From 795ae0111dbda0f901cddb35a9cd36e4cbf06362 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 23 May 2017 13:45:23 -0500 Subject: [PATCH] Fixes Blackbox subsystem def --- code/controllers/subsystem/blackbox.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/controllers/subsystem/blackbox.dm b/code/controllers/subsystem/blackbox.dm index fa0b86a908..ecc5f3cc17 100644 --- a/code/controllers/subsystem/blackbox.dm +++ b/code/controllers/subsystem/blackbox.dm @@ -1,7 +1,8 @@ SUBSYSTEM_DEF(blackbox) name = "Blackbox" wait = 6000 - flags = SS_NO_TICK_CHECK + flags = SS_NO_TICK_CHECK | SS_NO_INIT + runlevels = RUNLEVEL_GAME | RUNLEVEL_POSTGAME var/list/msg_common = list() var/list/msg_science = list()