Fix sometimes still not dropping pulls after crit/death (#31637)

This commit is contained in:
Verm
2025-04-13 09:52:25 -05:00
committed by GitHub
parent cebc73fe0c
commit 8084f48328

View File

@@ -64,7 +64,7 @@ public sealed class PullingSystem : EntitySystem
SubscribeLocalEvent<PullableComponent, ModifyUncuffDurationEvent>(OnModifyUncuffDuration);
SubscribeLocalEvent<PullableComponent, StopBeingPulledAlertEvent>(OnStopBeingPulledAlert);
SubscribeLocalEvent<PullerComponent, UpdateMobStateEvent>(OnStateChanged);
SubscribeLocalEvent<PullerComponent, UpdateMobStateEvent>(OnStateChanged, after: [typeof(MobThresholdSystem)]);
SubscribeLocalEvent<PullerComponent, AfterAutoHandleStateEvent>(OnAfterState);
SubscribeLocalEvent<PullerComponent, EntGotInsertedIntoContainerMessage>(OnPullerContainerInsert);
SubscribeLocalEvent<PullerComponent, EntityUnpausedEvent>(OnPullerUnpaused);