mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-26 01:22:03 +00:00
* Remove ZLEVEL_STATION_PRIMARY * Add Up and Down traits for use by ladders and chasms * Give map_config creation its own proc * Combine LoadConfig and ValidateJSON and remove transition_config * Make space linkage a z-level trait * Remove ZLEVEL_EMPTY_SPACE * Update uses of GetFullMapPath * Handle multi-Z stations and load Lavaland and Reebe at runtime * Remove unused space maps * Fix inappropriate z-expansion in map reader, improve logging * Update comments relating to z-level configuration * Add Lavaland and Reebe to ALL_MAPS
21 lines
648 B
Plaintext
21 lines
648 B
Plaintext
//#define LOWMEMORYMODE //uncomment this to load centcom and runtime station and thats it.
|
|
|
|
#include "map_files\generic\CentCom.dmm"
|
|
|
|
#ifndef LOWMEMORYMODE
|
|
#ifdef ALL_MAPS
|
|
#include "map_files\Mining\Lavaland.dmm"
|
|
#include "map_files\generic\City_of_Cogs.dmm"
|
|
#include "map_files\debug\runtimestation.dmm"
|
|
#include "map_files\Deltastation\DeltaStation2.dmm"
|
|
#include "map_files\MetaStation\MetaStation.dmm"
|
|
#include "map_files\OmegaStation\OmegaStation.dmm"
|
|
#include "map_files\PubbyStation\PubbyStation.dmm"
|
|
#include "map_files\BoxStation\BoxStation.dmm"
|
|
|
|
#ifdef TRAVISBUILDING
|
|
#include "templates.dm"
|
|
#endif
|
|
#endif
|
|
#endif
|