From 3889716dd6dfb7f497c95fe33d3bfdf80eacad1f Mon Sep 17 00:00:00 2001 From: Igor Golubkov Date: Mon, 22 Jul 2013 10:26:48 +0400 Subject: [PATCH] Fix Issue #3327 --- code/game/machinery/alarm.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/machinery/alarm.dm b/code/game/machinery/alarm.dm index 71906ffb3b6..ec48cf76cc4 100644 --- a/code/game/machinery/alarm.dm +++ b/code/game/machinery/alarm.dm @@ -125,6 +125,8 @@ pixel_x = (dir & 3)? 0 : (dir == 4 ? -24 : 24) pixel_y = (dir & 3)? (dir ==1 ? -24 : 24) : 0 update_icon() + if(ticker && ticker.current_state == 3)//if the game is running + src.initialize() return first_run()