From 429b35b5262f39400b5572ec277210df90e97e8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa=20Baldomir?= Date: Fri, 6 Mar 2015 00:05:22 +0100 Subject: [PATCH] Removed auto_use_power from process. --- code/game/machinery/holosign.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/holosign.dm b/code/game/machinery/holosign.dm index 2b585437fc..222975316f 100644 --- a/code/game/machinery/holosign.dm +++ b/code/game/machinery/holosign.dm @@ -14,11 +14,11 @@ if (stat & (BROKEN|NOPOWER)) return lit = !lit + use_power = lit ? 1 : 0 update_icon() /obj/machinery/holosign/process() - if(lit) - auto_use_power() + return /obj/machinery/holosign/update_icon() if (!lit) @@ -29,6 +29,7 @@ /obj/machinery/holosign/power_change() if (stat & NOPOWER) lit = 0 + use_power = 0 update_icon() /obj/machinery/holosign/surgery