Fix for can't stop pulling when cuffed (#40233)

* fix

* fix

* spaces added
This commit is contained in:
InsoPL
2025-09-12 05:39:25 +02:00
committed by GitHub
parent 8cc1b29ba4
commit 49fb6fdd6c
2 changed files with 24 additions and 6 deletions

View File

@@ -477,14 +477,16 @@ namespace Content.Shared.Cuffs
if (TryComp<HandsComponent>(target, out var hands) && hands.Count <= component.CuffedHandCount)
return false;
var ev = new TargetHandcuffedEvent();
RaiseLocalEvent(target, ref ev);
// Success!
_hands.TryDrop(user, handcuff);
_container.Insert(handcuff, component.Container);
var ev = new TargetHandcuffedEvent();
RaiseLocalEvent(target, ref ev);
UpdateHeldItems(target, handcuff, component);
return true;
}