From 6819c817df4d5a141929db32a68bdadfea79ef92 Mon Sep 17 00:00:00 2001 From: alex-gh Date: Thu, 21 Nov 2013 20:09:31 +0100 Subject: [PATCH] Fixed store computer overriding a proc of the clone computer --- code/game/machinery/computer/store.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/computer/store.dm b/code/game/machinery/computer/store.dm index 313078658d4..1e1569ab1cd 100644 --- a/code/game/machinery/computer/store.dm +++ b/code/game/machinery/computer/store.dm @@ -146,13 +146,13 @@ td.cost.toomuch { src.updateUsrDialog() return -/obj/machinery/computer/cloning/update_icon() +/obj/machinery/computer/merch/update_icon() if(stat & BROKEN) - icon_state = "comm_logs0" + icon_state = "comm_logsb" else if(stat & NOPOWER) - src.icon_state = "comm_logs" + src.icon_state = "comm_logs0" stat |= NOPOWER else icon_state = initial(icon_state)