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