From a712c8bd6ebe85831d3344e54d3bd72a75c7f5f7 Mon Sep 17 00:00:00 2001 From: Tim Date: Sat, 22 Nov 2025 00:10:11 -0600 Subject: [PATCH] Add direction helpers for burned subtypes of lights (#94057) ## About The Pull Request This adds some mapping directional helpers for the new burned subtypes of lights that makes it consistent with other lights. ## Why It's Good For The Game Consistency and better mapping. ## Changelog :cl: qol: Add direction helpers for burned subtypes of lights /:cl: --- code/modules/power/lighting/light_mapping_helpers.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/modules/power/lighting/light_mapping_helpers.dm b/code/modules/power/lighting/light_mapping_helpers.dm index 41378a319e3..fed5c70a1f9 100644 --- a/code/modules/power/lighting/light_mapping_helpers.dm +++ b/code/modules/power/lighting/light_mapping_helpers.dm @@ -109,6 +109,9 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light, 0) // ---- Broken tube MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/broken, 0) +// ---- Burned tube +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/burned, 0) + // ---- Tube construct MAPPING_DIRECTIONAL_HELPERS(/obj/structure/light_construct, 0) @@ -161,6 +164,9 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/small/empty, 0) // ---- Broken bulbs MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/small/broken, 0) +// ---- Burned bulb +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/small/burned, 0) + // ---- Red bulbs MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/light/small/dim, 0)