From ed7df070f3eda84524a11bd0b135ed465332f25a Mon Sep 17 00:00:00 2001 From: Batrachophreno Date: Tue, 28 Apr 2026 19:41:57 -0400 Subject: [PATCH] Add light meters to the autolathe (#22330) Adds light meters to the autolathe and fixes their inhand sprites. --- code/game/objects/items/devices/lightmeter.dm | 1 + code/modules/fabrication/designs/general/designs_tools.dm | 4 ++++ html/changelogs/Bat-LightMeter.yml | 5 +++++ 3 files changed, 10 insertions(+) create mode 100644 html/changelogs/Bat-LightMeter.yml diff --git a/code/game/objects/items/devices/lightmeter.dm b/code/game/objects/items/devices/lightmeter.dm index fe11c3f75d4..4a7d9368bb3 100644 --- a/code/game/objects/items/devices/lightmeter.dm +++ b/code/game/objects/items/devices/lightmeter.dm @@ -6,6 +6,7 @@ icon = 'icons/obj/item/gps.dmi' icon_state = "gps" item_state = "radio" + contained_sprite = TRUE // Copied from debugger.dm obj_flags = OBJ_FLAG_CONDUCTABLE force = 11 diff --git a/code/modules/fabrication/designs/general/designs_tools.dm b/code/modules/fabrication/designs/general/designs_tools.dm index 564cfa1f6b1..c2a8a5d0dc4 100644 --- a/code/modules/fabrication/designs/general/designs_tools.dm +++ b/code/modules/fabrication/designs/general/designs_tools.dm @@ -49,3 +49,7 @@ ABSTRACT_TYPE(/singleton/fabricator_recipe/tools) /singleton/fabricator_recipe/tools/hammer name = "hammer" path = /obj/item/hammer + +/singleton/fabricator_recipe/tools/light_meter + name = "light meter" + path = /obj/item/light_meter diff --git a/html/changelogs/Bat-LightMeter.yml b/html/changelogs/Bat-LightMeter.yml new file mode 100644 index 00000000000..218cd53fe9f --- /dev/null +++ b/html/changelogs/Bat-LightMeter.yml @@ -0,0 +1,5 @@ +author: Batrachophrenoboocosmomachia +delete-after: True +changes: + - rscadd: "Adds the light meter as a craftable design for the autolathe." + - bugfix: "Fixes light meter inhand sprites."