]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Fix sometimes still not dropping pulls after crit/death (#31637)
authorVerm <32827189+Vermidia@users.noreply.github.com>
Sun, 13 Apr 2025 14:52:25 +0000 (09:52 -0500)
committerGitHub <noreply@github.com>
Sun, 13 Apr 2025 14:52:25 +0000 (16:52 +0200)
Content.Shared/Movement/Pulling/Systems/PullingSystem.cs

index b17e34f1711bca85c0d9a3af06fd1b1e177177e2..6ac0460f8eeb4500cf5d457097748e7c195bb951 100644 (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);