From b33ec59a84d675ac9237e70ddd4ac73dc6b6efad Mon Sep 17 00:00:00 2001 From: Julien Date: Wed, 3 Apr 2024 10:25:13 +0200 Subject: [PATCH] inverse power stuff... to make it so that when power is off it doesn't start power animation --- code/game/machinery/machinery.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/machinery.dm b/code/game/machinery/machinery.dm index da640c356b39..8bc37488a578 100644 --- a/code/game/machinery/machinery.dm +++ b/code/game/machinery/machinery.dm @@ -364,6 +364,6 @@ Class Procs: /obj/structure/machinery/fuelpump/update_icon() if(stat & NOPOWER) - icon_state = "fuelpump_0" - else icon_state = "fuelpump_off" + else + icon_state = "fuelpump_0"