From 2dc58b605e76cc76f7a6dad9ef3e2c536ef14145 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sun, 28 May 2017 15:42:39 -0400 Subject: [PATCH] Fixes Centcom not being selflooping --- code/datums/map_config.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/map_config.dm b/code/datums/map_config.dm index 59ab5780b10..46a8905f158 100644 --- a/code/datums/map_config.dm +++ b/code/datums/map_config.dm @@ -11,8 +11,8 @@ var/minetype = "lavaland" - var/list/transition_config = list(MAIN_STATION = CROSSLINKED, - CENTCOMM = SELFLOOPING, + var/list/transition_config = list(CENTCOMM = SELFLOOPING, + MAIN_STATION = CROSSLINKED, EMPTY_AREA_1 = CROSSLINKED, EMPTY_AREA_2 = CROSSLINKED, MINING = SELFLOOPING,