From 60952bfb830ec83dc70c0bd04743ed7305b2db9a 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 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/datums/map_config.dm b/code/datums/map_config.dm index 1ff83aeac8..5a1ce2d48c 100644 --- a/code/datums/map_config.dm +++ b/code/datums/map_config.dm @@ -11,11 +11,13 @@ var/minetype = "lavaland" + //Order matters here. var/list/transition_config = list(CENTCOM = 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, @@ -28,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