Can't break other people's drags on cuffed people (#8868)

* works on my machine

* speedrun
This commit is contained in:
Rane
2022-06-15 21:10:03 -04:00
committed by GitHub
parent d5630e683d
commit e5bad81ac4
3 changed files with 31 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
namespace Content.Shared.Pulling.Events
{
/// <summary>
/// Directed event raised on the pulled to see if it can be pulled.
/// </summary>
public sealed class BeingPulledAttemptEvent : CancellableEntityEventArgs
{
public BeingPulledAttemptEvent(EntityUid puller, EntityUid pulled)
{
Puller = puller;
Pulled = pulled;
}
public EntityUid Puller { get; }
public EntityUid Pulled { get; }
}
}