From a63ce564fd27eaa6796d222042c073d0dbaf4b17 Mon Sep 17 00:00:00 2001 From: Markolie Date: Wed, 25 Feb 2015 22:45:06 +0100 Subject: [PATCH] Reduce Diona healing --- code/modules/mob/living/carbon/human/life.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 6fa2497139d..94f533ebf9d 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -916,10 +916,10 @@ 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 >= 3) //if there's enough light, heal + if(light_amount >= 5) //if there's enough light, heal adjustBruteLoss(-(light_amount/2)) - adjustFireLoss(-(light_amount/2)) - adjustToxLoss(-(light_amount)) + adjustFireLoss(-(light_amount/4)) + //adjustToxLoss(-(light_amount)) adjustOxyLoss(-(light_amount)) //TODO: heal wounds, heal broken limbs.