From a52b8998638c1e032b3146402dcbacd5b811d1ce Mon Sep 17 00:00:00 2001 From: Krausus Date: Mon, 25 May 2015 05:31:10 -0400 Subject: [PATCH] Fixes Diona healing from suicide damage If they want to die, let 'em. --- code/modules/mob/living/carbon/human/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 7622562b9e5..0a3faac7886 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -764,7 +764,7 @@ var/global/list/brutefireloss_overlays = list("1" = image("icon" = 'icons/mob/sc if(species.flags & IS_PLANT) if(nutrition > 450) nutrition = 450 - if(light_amount >= 5) //if there's enough light, heal + if((light_amount >= 5) && !suiciding) //if there's enough light, heal adjustBruteLoss(-(light_amount/2)) adjustFireLoss(-(light_amount/4)) //adjustToxLoss(-(light_amount))