From 1e468ba4f6d912de783516f01be4abcc7fb876b6 Mon Sep 17 00:00:00 2001 From: Albert Iordache Date: Tue, 10 Jul 2012 12:00:40 +0300 Subject: [PATCH] Fixed the "do/does" examine bug for humans --- code/modules/mob/living/carbon/human/examine.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 4c1413ba5ef..9af7efb9040 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -32,6 +32,7 @@ var/t_him = "it" var/t_has = "has" var/t_is = "is" + var/t_does = "does" var/msg = "*---------*\nThis is " @@ -50,6 +51,7 @@ t_him = "them" t_has = "have" t_is = "are" + t_does = "do" if(mutantrace == "lizard") examine_text = "one of those lizard-like Soghuns" @@ -196,7 +198,7 @@ if (src.stat == 1 || stat == 2) msg += "[t_He] [t_is]n't responding to anything around [t_him] and seems to be asleep.\n" if((!isbreathing || holdbreath) && distance <= 3) - msg += "[t_He] does not appear to be breathing.\n" + msg += "[t_He] [t_does] not appear to be breathing.\n" if(istype(usr, /mob/living/carbon/human) && usr.stat == 0 && src.stat == 1 && distance <= 1) for(var/mob/O in viewers(usr.loc, null)) O.show_message("[usr] checks [src]'s pulse.", 1)