From 1a210f626ccbae7e46c96fec0fbd033b52424cc4 Mon Sep 17 00:00:00 2001 From: AnturK Date: Thu, 28 Sep 2017 17:17:11 +0200 Subject: [PATCH] Fixes transitions (#31084) * Fixes transitions * Cautionary comment. --- code/datums/map_config.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/datums/map_config.dm b/code/datums/map_config.dm index ddf3da9698b..e7408730521 100644 --- a/code/datums/map_config.dm +++ b/code/datums/map_config.dm @@ -11,12 +11,13 @@ var/minetype = "lavaland" + //Order matters here. var/list/transition_config = list(CENTCOM = SELFLOOPING, - CITY_OF_COGS = SELFLOOPING, MAIN_STATION = CROSSLINKED, EMPTY_AREA_1 = CROSSLINKED, EMPTY_AREA_2 = CROSSLINKED, MINING = SELFLOOPING, + CITY_OF_COGS = SELFLOOPING, EMPTY_AREA_3 = CROSSLINKED, EMPTY_AREA_4 = CROSSLINKED, EMPTY_AREA_5 = CROSSLINKED, @@ -29,6 +30,7 @@ var/config_min_users = 0 var/voteweight = 1 var/allow_custom_shuttles = "yes" + /datum/map_config/New(filename = "data/next_map.json", default_to_box, delete_after) if(default_to_box) return