From 278f241133b3570a2394c3222be83c7baf96b3c7 Mon Sep 17 00:00:00 2001 From: alex-gh Date: Wed, 12 Feb 2014 01:14:26 +0100 Subject: [PATCH] Dionas now require more light to heal, being in darkness causes more damage --- code/modules/mob/living/carbon/human/life.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 087018404e0..ed240edc172 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -958,7 +958,7 @@ if(species.flags & IS_PLANT) if(nutrition > 500) nutrition = 500 - if(light_amount >= 3) //if there's enough light, heal + if(light_amount >= 5) //if there's enough light, heal adjustBruteLoss(-(light_amount)) adjustToxLoss(-(light_amount)) adjustOxyLoss(-(light_amount)) @@ -1013,7 +1013,7 @@ if(species.flags & REQUIRE_LIGHT) if(nutrition < 200) - take_overall_damage(2,0) + take_overall_damage(10,0) traumatic_shock++ if (drowsyness)