Merge pull request #4535 from Citadel-Station-13/upstream-merge-33821

[MIRROR] Fixes deleting handcuffs
This commit is contained in:
LetterJay
2017-12-27 03:05:33 -06:00
committed by GitHub
4 changed files with 15 additions and 15 deletions
@@ -33,10 +33,6 @@
if(istype(C) && C.handcuffed && istype(C.handcuffed, /obj/item/restraints/handcuffs/cable))
user.visible_message("<span class='notice'>[user] cuts [C]'s restraints with [src]!</span>")
qdel(C.handcuffed)
C.handcuffed = null
if(C.buckled && C.buckled.buckle_requires_restraints)
C.buckled.unbuckle_mob(C)
C.update_handcuffed()
return
else
..()