From 0f587202d0660a60593bb12951e432f88663396e Mon Sep 17 00:00:00 2001 From: leoworm Date: Sat, 28 Sep 2024 10:18:23 +0200 Subject: [PATCH] Added shadowperson healing case for when inside locker (#26837) --- 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) ..()