diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 51fade8fd0b..4f8f5658cfa 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -425,7 +425,7 @@ if(HULK in usr.mutations) C.say(pick(";RAAAAAAAARGH!", ";HNNNNNNNNNGGGGGGH!", ";GWAAAAAAAARRRHHH!", "NNNNNNNNGGGGGGGGHH!", ";AAAAAAARRRGH!" )) - + C.visible_message("[C] manages to break [I]!", \ "You successfully break [I].") qdel(I) @@ -436,11 +436,11 @@ else C.update_inv_legcuffed(0) C.legcuffed = null - - + + /mob/living/proc/cuff_resist(obj/item/I, mob/living/carbon/C) var/breakouttime = 600 - var/displaytime = 1 + var/displaytime = 1 if(istype(I, /obj/item/weapon/handcuffs)) var/obj/item/weapon/handcuffs/HC = C.handcuffed breakouttime = HC.breakouttime @@ -456,15 +456,15 @@ if(do_after(C, 50)) if(!I || C.buckled) return - cuff_break(I, C) + cuff_break(I, C) else - + C.visible_message("[usr] attempts to remove [I]!", \ "You attempt to remove [I]. (This will take around [displaytime] minutes and you need to stand still.)") spawn(0) if(do_after(C, breakouttime)) if(!I || C.buckled) - return + return C.visible_message("[C] manages to remove [I]!", \ "You successfully remove [I].") @@ -596,7 +596,7 @@ if(what.flags & NODROP) src << "You can't remove \the [what.name], it appears to be stuck!" return - visible_message("[src] tries to remove [who]'s [what.name].", \ + who.visible_message("[src] tries to remove [who]'s [what.name].", \ "[src] tries to remove [who]'s [what.name].") what.add_fingerprint(src) if(do_mob(src, who, STRIP_DELAY))