Fixes "chest is bleeding from a big gaping wound on her chest."

(Someone was tired when they coded this)
This commit is contained in:
SkyMarshal
2012-01-29 02:28:04 -07:00
parent 4b79c258b6
commit 7472d4eb5d
@@ -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()