From c02f35a7e55946507345aac2ff60f2f1eb89333a Mon Sep 17 00:00:00 2001 From: Blue Wildrose Date: Sat, 20 Mar 2021 11:29:15 -0700 Subject: [PATCH] Glowing goo be gone --- .../mob/living/carbon/human/species_types/shadowpeople.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species_types/shadowpeople.dm b/code/modules/mob/living/carbon/human/species_types/shadowpeople.dm index 329fa5ee65..4c82a25b4b 100644 --- a/code/modules/mob/living/carbon/human/species_types/shadowpeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/shadowpeople.dm @@ -181,6 +181,10 @@ if(T.light_range && !isspaceturf(T)) //no fairy grass or light tile can escape the fury of the darkness. to_chat(user, "You scrape away [T] with your [name] and snuff out its lights.") T.ScrapeAway(flags = CHANGETURF_INHERIT_AIR) + else if(is_cleanable(AM)) + var/obj/effect/E = AM + if(E.light_range && E.light_power) + disintegrate(E) else if(isliving(AM)) var/mob/living/L = AM if(isethereal(AM))