From 8084f48328d840ed89eccd67aa4098572ee6de0d Mon Sep 17 00:00:00 2001 From: Verm <32827189+Vermidia@users.noreply.github.com> Date: Sun, 13 Apr 2025 09:52:25 -0500 Subject: [PATCH] Fix sometimes still not dropping pulls after crit/death (#31637) --- Content.Shared/Movement/Pulling/Systems/PullingSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs index b17e34f171..6ac0460f8e 100644 --- a/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs +++ b/Content.Shared/Movement/Pulling/Systems/PullingSystem.cs @@ -64,7 +64,7 @@ public sealed class PullingSystem : EntitySystem SubscribeLocalEvent(OnModifyUncuffDuration); SubscribeLocalEvent(OnStopBeingPulledAlert); - SubscribeLocalEvent(OnStateChanged); + SubscribeLocalEvent(OnStateChanged, after: [typeof(MobThresholdSystem)]); SubscribeLocalEvent(OnAfterState); SubscribeLocalEvent(OnPullerContainerInsert); SubscribeLocalEvent(OnPullerUnpaused); -- 2.51.2