From 3c73f6fc832877faf4e602e5bbb9fa40720948ef Mon Sep 17 00:00:00 2001 From: Will <7099514+Willburd@users.noreply.github.com> Date: Mon, 4 Aug 2025 18:35:46 -0400 Subject: [PATCH] Ventcrawl light (#18150) --- code/modules/mob/living/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/life.dm b/code/modules/mob/living/life.dm index fa9436cea5..fff2c59d56 100644 --- a/code/modules/mob/living/life.dm +++ b/code/modules/mob/living/life.dm @@ -267,7 +267,7 @@ set_light(distance, distance * 4, l_color = "#660066") return TRUE - else if(glow_toggle) + else if(glow_toggle && !is_ventcrawling) // Hide the light in vents set_light(glow_range, glow_intensity, glow_color) else