From b89e9134458c1fe5d568fe1c20ac8de7d2f71462 Mon Sep 17 00:00:00 2001 From: cib Date: Mon, 6 Aug 2012 15:08:29 -0700 Subject: [PATCH] Slowed down healing a little. Also a minor fix to examine. --- code/modules/mob/living/carbon/human/examine.dm | 2 +- code/modules/mob/organ/organ.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index dc15d98a57a..39558df4912 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -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]"] += "!\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) diff --git a/code/modules/mob/organ/organ.dm b/code/modules/mob/organ/organ.dm index 4fe26a76c35..fd5aa530231 100644 --- a/code/modules/mob/organ/organ.dm +++ b/code/modules/mob/organ/organ.dm @@ -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]