From: Verm <32827189+Vermidia@users.noreply.github.com> Date: Sun, 13 Apr 2025 14:52:25 +0000 (-0500) Subject: Fix sometimes still not dropping pulls after crit/death (#31637) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=8084f48328d840ed89eccd67aa4098572ee6de0d;p=space-station-14.git Fix sometimes still not dropping pulls after crit/death (#31637) --- 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);