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()