From 214d85358bb2562c8e7d5c3fcd23499cc2b6d0ea Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Fri, 28 Jan 2022 21:28:58 -0800 Subject: [PATCH] Fix the mc getting completely fucked in the brain due to background ticker subsystems (#64500) * Fix the mc getting completely fucked in the brain due to background ticker subsystems * Update code/controllers/subsystem.dm Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com> Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com> --- 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 95c562d3c0c..885c5f89849 100644 --- a/code/controllers/subsystem.dm +++ b/code/controllers/subsystem.dm @@ -168,7 +168,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)