[Hotfix] Remove pull-escape trick (#40368)

* make HandleStopPull byref

* we get signal
This commit is contained in:
Errant
2025-09-15 13:31:22 +02:00
committed by GitHub
parent d8e818283c
commit 9b5f9c3fd6
3 changed files with 10 additions and 3 deletions

View File

@@ -3,8 +3,10 @@ namespace Content.Shared.Pulling.Events;
/// <summary>
/// Raised when a request is made to stop pulling an entity.
/// </summary>
[ByRefEvent]
public record struct AttemptStopPullingEvent(EntityUid? User = null)
{
public readonly EntityUid? User = User;
public bool Cancelled;
}
}

View File

@@ -599,7 +599,7 @@ public sealed class PullingSystem : EntitySystem
return true;
var msg = new AttemptStopPullingEvent(user);
RaiseLocalEvent(pullableUid, msg, true);
RaiseLocalEvent(pullableUid, ref msg, true);
if (msg.Cancelled)
return false;