Slowed down healing a little.

Also a minor fix to examine.
This commit is contained in:
cib
2012-08-06 15:08:29 -07:00
parent 76c06283f4
commit b89e913445
2 changed files with 3 additions and 3 deletions
@@ -283,7 +283,7 @@
if(21 to INFINITY)
wound_flavor_text["[temp.display_name]"] += pick(" a lot of burns"," severe melting")
wound_flavor_text["[temp.display_name]"] += "!</span>\n"
else if(temp.wounds.len)
else if(temp.wounds.len > 0)
var/list/wound_descriptors = list()
for(var/datum/wound/W in temp.wounds)
if(W.desc in wound_descriptors)
+2 -2
View File
@@ -402,11 +402,11 @@
for(var/datum/wound/W in wounds)
if(W.is_treated())
// slow healing
var/amount = 0.5
var/amount = 0.2
if(W.bandaged) amount++
if(W.salved) amount++
if(W.disinfected) amount++
W.heal_damage(amount / 10)
W.heal_damage(amount / 20)
proc/add_wound(var/used_weapon, var/damage)
var/datum/autopsy_data/W = autopsy_data[used_weapon]