From 5278ccda6a0f404014a1db0c4cb8eda9c81e8539 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Thu, 30 Mar 2017 12:02:54 -0400 Subject: [PATCH] Fixes firedoors auto-opening/closing without power --- code/game/area/areas.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/area/areas.dm b/code/game/area/areas.dm index c2652709a12..ff40a96b1bc 100644 --- a/code/game/area/areas.dm +++ b/code/game/area/areas.dm @@ -203,7 +203,7 @@ var/list/teleportlocs = list() if(A.fire) cont = FALSE break - if(cont) + if(cont && D.is_operational()) if(D.operating) D.nextstate = opening ? OPEN : CLOSED else if(!(D.density ^ opening))