Fixes burn description saying it is salved when not

This commit is contained in:
mwerezak
2014-08-16 21:23:56 -04:00
committed by ZomgPonies
parent 15a6b95112
commit 547fada4df
2 changed files with 7 additions and 6 deletions
@@ -283,6 +283,7 @@
for(var/datum/wound/W in temp.wounds)
if(W.internal && !temp.open) continue // can't see internal wounds
var/this_wound_desc = W.desc
if(W.damage_type == BURN && W.salved) this_wound_desc = "salved [this_wound_desc]"
if(W.bleeding()) this_wound_desc = "bleeding [this_wound_desc]"
else if(W.bandaged) this_wound_desc = "bandaged [this_wound_desc]"
if(W.germ_level > 600) this_wound_desc = "badly infected [this_wound_desc]"