From 63a1806b41e0e39f11db3dc53f7379411087a50c Mon Sep 17 00:00:00 2001 From: Leshana Date: Mon, 5 Feb 2018 13:13:37 -0500 Subject: [PATCH] Bitfields do not work that way. Fix attempt to use `in` on a non-list. --- code/controllers/subsystem.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem.dm b/code/controllers/subsystem.dm index bd9a2aeafb..437c10424b 100644 --- a/code/controllers/subsystem.dm +++ b/code/controllers/subsystem.dm @@ -166,7 +166,7 @@ - if(can_fire && !(SS_NO_FIRE in flags)) + if(can_fire && !(SS_NO_FIRE & flags)) msg = "[round(cost,1)]ms|[round(tick_usage,1)]%|[round(ticks,0.1)]\t[msg]" else msg = "OFFLINE\t[msg]"