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>
This commit is contained in:
Kyle Spier-Swenson
2022-01-28 21:28:58 -08:00
committed by GitHub
parent 809997bd56
commit 214d85358b
+1 -1
View File
@@ -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)