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]