From 5adbf273d2bc9b39882d8f11555ca272049b85d6 Mon Sep 17 00:00:00 2001 From: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com> Date: Mon, 31 Jan 2022 08:16:03 +0000 Subject: [PATCH] Tweaks MC logic (#17378) --- 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 58216c38233..d37597d190d 100644 --- a/code/controllers/subsystem.dm +++ b/code/controllers/subsystem.dm @@ -90,7 +90,7 @@ queue_node_priority = queue_node.queued_priority queue_node_flags = queue_node.flags - if(queue_node_flags & SS_TICKER) + if(queue_node_flags & (SS_TICKER|SS_BACKGROUND) == SS_TICKER) if((SS_flags & (SS_TICKER|SS_BACKGROUND)) != SS_TICKER) continue if(queue_node_priority < SS_priority)