diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm index 5c2b4817efc6..02f426181ccf 100644 --- a/code/controllers/subsystem/mapping.dm +++ b/code/controllers/subsystem/mapping.dm @@ -454,6 +454,9 @@ SUBSYSTEM_DEF(mapping) LoadGroup(FailedZs, "Lavaland", "map_files/mining", "Lavaland.dmm", default_traits = ZTRAITS_LAVALAND) //Yogs, yoglavaland GLOB.minetype = MINETYPE_LAVALAND //Yogs begin, jungleland gen + + //HOGEDIT: Jungleland is disabled on the default config, so the only way to enable it would be through map-specific minetype configs. + else if(config.minetype == "jungleland") LoadGroup(FailedZs, "Jungleland", "map_files/mining", "Jungleland.dmm", default_traits = ZTRAITS_JUNGLELAND) GLOB.minetype = MINETYPE_JUNGLE diff --git a/code/datums/map_config.dm b/code/datums/map_config.dm index f017f0636060..a8abc815cb6d 100644 --- a/code/datums/map_config.dm +++ b/code/datums/map_config.dm @@ -25,7 +25,8 @@ /// Boolean that tells us if this is a planetary station. (like IceBoxStation) var/planetary = FALSE - var/minetype = "jungle_and_lavaland" + //HOGEDIT: Jungleland is disabled. + var/minetype = "lavaland" var/cryo_spawn = FALSE var/allow_custom_shuttles = TRUE