From a18fc337242c3f4a9e06facee39c6092edc94ec1 Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Tue, 13 Jan 2026 17:56:05 +0100 Subject: [PATCH] Fix scram allowing you to bring someone along (#42393) 1 line bugfix --- Content.Shared/Trigger/Systems/ScramOnTriggerSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.52.0