From bcd3df5bd4e42b5b849221b8025d52ef4755c506 Mon Sep 17 00:00:00 2001 From: Dip Date: Fri, 27 Nov 2020 15:23:35 -0300 Subject: [PATCH] Inconsistency with the light eater and marker beacons --- .../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 324e1109..3c716fa1 100644 --- a/code/modules/mob/living/carbon/human/species_types/shadowpeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/shadowpeople.dm @@ -202,6 +202,10 @@ var/obj/item/I = AM if(I.light_range && I.light_power) disintegrate(I) + else if(istype(AM, /obj/structure/marker_beacon)) + var/obj/structure/marker_beacon/I = AM + disintegrate(I) + //why the fuck is the marker beacon a structure? who. what. why. /obj/item/light_eater/proc/disintegrate(obj/item/O) if(istype(O, /obj/item/pda))