From f3734abcdbcc7375f904f25ded1c5ca483d68dc7 Mon Sep 17 00:00:00 2001 From: leoworm Date: Thu, 19 Sep 2024 17:53:51 +0200 Subject: [PATCH] Added shadowperson healing case for when inside locker --- code/modules/mob/living/carbon/human/species/shadow.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species/shadow.dm b/code/modules/mob/living/carbon/human/species/shadow.dm index 24ff15da2012..92f9f48e14c9 100644 --- a/code/modules/mob/living/carbon/human/species/shadow.dm +++ b/code/modules/mob/living/carbon/human/species/shadow.dm @@ -39,4 +39,7 @@ else if(light_amount < 2) //heal in the dark H.heal_overall_damage(1, 1) H.clear_alert("lightexposure") + else //we're inside an object, so darkness + H.clear_alert("lightexposure") + H.heal_overall_damage(1, 1) ..()