From 4f8791c5b3e38d4eaf19c26b81955d1e19ee142f Mon Sep 17 00:00:00 2001 From: Leo Date: Sat, 13 Jan 2018 17:25:27 -0200 Subject: [PATCH 1/2] Merge pull request #34362 from Leshana/vplk-bitfields Code fix for stat_entry on NO_FIRE subsystems --- 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 c3779dc98f..4fe0812c56 100644 --- a/code/controllers/subsystem.dm +++ b/code/controllers/subsystem.dm @@ -172,7 +172,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(tick_overrun,1)]%)|[round(ticks,0.1)]\t[msg]" else msg = "OFFLINE\t[msg]"