From 96bc65d620d43239c1a8ccda70f94f523b30979c Mon Sep 17 00:00:00 2001 From: ikarrus Date: Wed, 11 Jun 2014 09:11:34 -0600 Subject: [PATCH] Stripping people now bolds the text for the target Quick fix for #3896 --- code/modules/mob/living/living.dm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 6bef92dc0c2..2b8a21f2139 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].") @@ -583,7 +583,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))