From 9afb4b82f772d9b46dbafc0440c6c1e3667f520d Mon Sep 17 00:00:00 2001 From: Penelope Haze Date: Wed, 10 Sep 2025 00:31:47 -0400 Subject: [PATCH] Fix missing abstract_type values for power machines --- code/modules/power/debug_items.dm | 3 ++- code/modules/power/power.dm | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/power/debug_items.dm b/code/modules/power/debug_items.dm index 3c725c6dd430..dcb428ebdf8e 100644 --- a/code/modules/power/debug_items.dm +++ b/code/modules/power/debug_items.dm @@ -1,4 +1,5 @@ -/obj/machinery/power/debug_items/ +/obj/machinery/power/debug_items + abstract_type = /obj/machinery/power/debug_items icon = 'icons/obj/power.dmi' icon_state = "tracker" anchored = TRUE diff --git a/code/modules/power/power.dm b/code/modules/power/power.dm index b88f26c3fe64..ff6d5274e982 100644 --- a/code/modules/power/power.dm +++ b/code/modules/power/power.dm @@ -9,6 +9,7 @@ ///////////////////////////// /obj/machinery/power + abstract_type = /obj/machinery/power name = null icon = 'icons/obj/power.dmi' anchored = TRUE