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))