From 7472d4eb5d43a4b88a77a095b165b870ccd13b36 Mon Sep 17 00:00:00 2001 From: SkyMarshal Date: Sun, 29 Jan 2012 02:28:04 -0700 Subject: [PATCH] Fixes "chest is bleeding from a big gaping wound on her chest." (Someone was tired when they coded this) --- code/modules/mob/living/carbon/human/examine.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 63ef86aee38..78ba4691420 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -168,10 +168,10 @@ if (!src.client) usr << "\red [src.name] doesn't seem as though they want to talk." - for(var/name in organs) - var/datum/organ/external/temp = organs[name] + for(var/named in organs) + var/datum/organ/external/temp = organs[named] if(temp.destroyed) - usr << "\red [name] is missing [t_his] [temp.display_name]." + usr << "\red [src.name] is missing [t_his] [temp.display_name]." if(temp.wounds) for(var/datum/organ/external/wound/w in temp.wounds) var/size = w.wound_size @@ -190,7 +190,7 @@ if(6) sizetext = "massive wound" if(w.bleeding) - usr << "\red [name] is bleeding from a [sizetext] on [t_his] [temp.display_name]." + usr << "\red [src.name] is bleeding from a [sizetext] on [t_his] [temp.display_name]." continue print_flavor_text()