From 46a60140c3610dc41c79ae85608faf7912427160 Mon Sep 17 00:00:00 2001 From: ikarrus Date: Sat, 14 Jun 2014 19:34:18 -0600 Subject: [PATCH] Resisting out of handcuffs should not update your icon properly The icon was being updated before the cuffs were removed --- code/modules/mob/living/living.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 707e55f0602..d952a5be3f9 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -431,11 +431,11 @@ qdel(I) if(C.handcuffed) - C.update_inv_handcuffed(0) C.handcuffed = null + C.update_inv_handcuffed(0) else - C.update_inv_legcuffed(0) C.legcuffed = null + C.update_inv_legcuffed(0) /mob/living/proc/cuff_resist(obj/item/I, mob/living/carbon/C)