From 9c59171afed0e65dad79155293d8ca24806fb292 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Wed, 11 Oct 2017 16:53:23 -0400 Subject: [PATCH] Fixes empty light fixtures showing as working in DM --- code/modules/power/lighting.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/modules/power/lighting.dm b/code/modules/power/lighting.dm index eb2a28e9a1f..aca94a08e3f 100644 --- a/code/modules/power/lighting.dm +++ b/code/modules/power/lighting.dm @@ -190,11 +190,17 @@ break_light_tube(1) return ..() +/obj/machinery/light/built + icon_state = "tube-empty" + /obj/machinery/light/built/New() status = LIGHT_EMPTY update(0) ..() +/obj/machinery/light/small/built + icon_state = "bulb-empty" + /obj/machinery/light/small/built/New() status = LIGHT_EMPTY update(0)