From 57619b49df637029de9800bc4a899bb7a3f85809 Mon Sep 17 00:00:00 2001 From: Contrabang <91113370+Contrabang@users.noreply.github.com> Date: Wed, 17 Apr 2024 20:12:46 -0400 Subject: [PATCH] yes --- code/modules/underworld/underworld.dm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/code/modules/underworld/underworld.dm b/code/modules/underworld/underworld.dm index 6159a27f2d..931fb7a710 100644 --- a/code/modules/underworld/underworld.dm +++ b/code/modules/underworld/underworld.dm @@ -60,20 +60,22 @@ // shit that eventually will need moved elsewhere /obj/item/flashlight/lantern/shrunken name = "shrunken lamp" + desc = "A beacon." icon_state = "shrunkenlamp" item_state = "shrunkenlamp" lefthand_file = 'icons/mob/inhands/equipment/mining_lefthand.dmi' righthand_file = 'icons/mob/inhands/equipment/mining_righthand.dmi' - desc = "A beacon." - light_range = 2 // luminosity when on + light_range = 4 + light_power = 20 + light_color = LIGHT_COLOR_BLOOD_MAGIC /obj/item/flashlight/lantern/shrunken/update_brightness(mob/user = null) if(on) icon_state = "[initial(icon_state)]-on" - set_light(3, 20, LIGHT_COLOR_BLOOD_MAGIC) + set_light_on(TRUE) else icon_state = initial(icon_state) - set_light(0) + set_light_on(FALSE) /obj/structure/underworld/carriageman