From 823941764a938e279fe55e356edb724197700685 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Wed, 13 Apr 2022 19:11:55 +1200 Subject: [PATCH] Fix handcuffed players being able to escape pulls (#7534) --- Content.Shared/Cuffs/SharedCuffableSystem.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Cuffs/SharedCuffableSystem.cs b/Content.Shared/Cuffs/SharedCuffableSystem.cs index 69671fd1a1..627fb8c1a6 100644 --- a/Content.Shared/Cuffs/SharedCuffableSystem.cs +++ b/Content.Shared/Cuffs/SharedCuffableSystem.cs @@ -26,7 +26,8 @@ namespace Content.Shared.Cuffs SubscribeLocalEvent(OnUnequipAttempt); SubscribeLocalEvent(OnDropAttempt); SubscribeLocalEvent(OnPickupAttempt); - SubscribeLocalEvent(OnPull); + SubscribeLocalEvent(OnPull); + SubscribeLocalEvent(OnPull); } private void OnPull(EntityUid uid, SharedCuffableComponent component, PullMessage args)