From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Tue, 13 Jan 2026 16:56:05 +0000 (+0100) Subject: Fix scram allowing you to bring someone along (#42393) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=a18fc337242c3f4a9e06facee39c6092edc94ec1;p=space-station-14.git Fix scram allowing you to bring someone along (#42393) 1 line bugfix --- diff --git a/Content.Shared/Trigger/Systems/ScramOnTriggerSystem.cs b/Content.Shared/Trigger/Systems/ScramOnTriggerSystem.cs index eded400712..cd79eed13b 100644 --- a/Content.Shared/Trigger/Systems/ScramOnTriggerSystem.cs +++ b/Content.Shared/Trigger/Systems/ScramOnTriggerSystem.cs @@ -25,7 +25,7 @@ public sealed class ScramOnTriggerSystem : XOnTriggerSystem(target, out var pull) && _pulling.IsPulled(target, pull)) - _pulling.TryStopPull(ent, pull); + _pulling.TryStopPull(target, pull); // Check if the user is pulling anything, and drop it if so. if (TryComp(target, out var puller) && TryComp(puller.Pulling, out var pullable))