From 2500b8aa1c4aaa9ff897d606819367aab2b64346 Mon Sep 17 00:00:00 2001 From: SierraKomodo <11140088+SierraKomodo@users.noreply.github.com> Date: Thu, 26 Oct 2023 16:35:05 +0300 Subject: [PATCH] [MIRROR] Update console glow when updating icon --- code/game/machinery/computer/computer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/computer/computer.dm b/code/game/machinery/computer/computer.dm index 6ac304b64da2c..a7aba9f1062d9 100644 --- a/code/game/machinery/computer/computer.dm +++ b/code/game/machinery/computer/computer.dm @@ -41,6 +41,7 @@ visible_message(SPAN_WARNING("\The [src] breaks!")) /obj/machinery/computer/on_update_icon() + update_glow() ClearOverlays() icon = initial(icon) icon_state = initial(icon_state) @@ -62,7 +63,6 @@ if(reason_broken & MACHINE_BROKEN_NO_PARTS) - set_light(0) icon = 'icons/obj/machines/computer.dmi' icon_state = "wired" var/screen = get_component_of_type(/obj/item/stock_parts/console_screen)