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 49af501942..70abba5a01 100644
--- a/code/modules/mob/living/carbon/human/species_types/shadowpeople.dm
+++ b/code/modules/mob/living/carbon/human/species_types/shadowpeople.dm
@@ -213,6 +213,16 @@
PDA.f_lum = 0
PDA.update_icon()
visible_message("The light in [PDA] shorts out!")
+ else if(istype(O, /obj/item/gun))
+ var/obj/item/gun/weapon = O
+ if(weapon.gun_light)
+ var/obj/item/flashlight/seclite/light = weapon.gun_light
+ light.forceMove(get_turf(weapon))
+ light.burn()
+ weapon.gun_light = null
+ weapon.update_gunlight()
+ QDEL_NULL(weapon.alight)
+ visible_message("[light] on [O] flickers out and disintegrates!")
else
visible_message("[O] is disintegrated by [src]!")
O.burn()