From 0147b4a7e14bd8bb3f174e86b2090342391bb551 Mon Sep 17 00:00:00 2001 From: oranges Date: Thu, 28 Dec 2017 18:58:31 +1300 Subject: [PATCH 1/2] Merge pull request #33853 from tgstation/Cyberboss-patch-2 If the world is launched with the "no-init" param. Master.Initialize isn't called --- code/game/world.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/world.dm b/code/game/world.dm index 39d48d28ac..d2ef3498fe 100644 --- a/code/game/world.dm +++ b/code/game/world.dm @@ -37,6 +37,9 @@ GLOBAL_PROTECT(security_mode) if(fexists(RESTART_COUNTER_PATH)) GLOB.restart_counter = text2num(trim(file2text(RESTART_COUNTER_PATH))) fdel(RESTART_COUNTER_PATH) + + if("no-init" in params) + return Master.Initialize(10, FALSE)