From 381124e573c93441c94d035df22e0dcaf15da260 Mon Sep 17 00:00:00 2001 From: Ryan <80364400+Sirryan2002@users.noreply.github.com> Date: Tue, 30 Jul 2024 08:32:13 -0400 Subject: [PATCH] yer (#26290) --- code/game/machinery/computer/ai_core.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/machinery/computer/ai_core.dm b/code/game/machinery/computer/ai_core.dm index 6421fd284de..a4410dd1132 100644 --- a/code/game/machinery/computer/ai_core.dm +++ b/code/game/machinery/computer/ai_core.dm @@ -28,6 +28,7 @@ state = CIRCUIT_CORE P.forceMove(src) circuit = P + update_icon(UPDATE_ICON_STATE) return if(SCREWED_CORE) if(istype(P, /obj/item/stack/cable_coil)) @@ -136,11 +137,13 @@ state = EMPTY_CORE circuit.forceMove(loc) circuit = null + update_icon(UPDATE_ICON_STATE) return if(GLASS_CORE) to_chat(user, "You remove the glass panel.") state = CABLED_CORE new /obj/item/stack/sheet/rglass(loc, 2) + update_icon(UPDATE_ICON_STATE) return if(CABLED_CORE) if(brain)