diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index d26a721dbc8..0e212497035 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -279,13 +279,20 @@ /mob/living/carbon/resist_restraints() var/obj/item/I = null + var/type = 0 if(handcuffed) I = handcuffed + type = 1 else if(legcuffed) I = legcuffed + type = 2 if(I) - changeNext_move(CLICK_CD_BREAKOUT) - last_special = world.time + CLICK_CD_BREAKOUT + if(type == 1) + changeNext_move(CLICK_CD_BREAKOUT) + last_special = world.time + CLICK_CD_BREAKOUT + if(type == 2) + changeNext_move(CLICK_CD_RANGED) + last_special = world.time + CLICK_CD_RANGED cuff_resist(I)