forked from Skyrat-SS13/Skyrat-tg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_basemap.dm
41 lines (37 loc) · 1.81 KB
/
_basemap.dm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//#define LOWMEMORYMODE //uncomment this to load centcom and runtime station and thats it.
#include "map_files\generic\CentCom_skyrat.dmm" //SKYRAT EDIT ADDITION - SMMS
#include "map_files\generic\CentCom_skyrat_z2.dmm" //SKYRAT EDIT ADDITION - SMMS
#ifndef LOWMEMORYMODE
#ifdef ALL_MAPS
#include "map_files\Mining\Lavaland.dmm"
#include "map_files\debug\runtimestation.dmm"
#include "map_files\debug\multiz.dmm"
#include "map_files\Deltastation\DeltaStation2.dmm"
#include "map_files\KiloStation\KiloStation.dmm"
#include "map_files\MetaStation\MetaStation.dmm"
#include "map_files\IceBoxStation\IceBoxStation.dmm"
#include "map_files\IceBoxStation\IcemoonUnderground_Above.dmm" // Adding this here now knowing that I'll change it upstream soon
#include "map_files\IceBoxStation\IcemoonUnderground_Below.dmm"
#include "map_files\tramstation\tramstation.dmm"
// SKYRAT EDIT ADDITON START - Compiling our modular maps too!
#include "map_files\Deltastation\DeltaStation2_skyrat.dmm"
#include "map_files\KiloStation\KiloStation_skyrat.dmm"
#include "map_files\MetaStation\MetaStation_skyrat.dmm"
#include "map_files\IceBoxStation\IceBoxStation_skyrat.dmm"
#include "map_files\IceBoxStation\IcemoonUnderground_Above_skyrat.dmm"
#include "map_files\IceBoxStation\IcemoonUnderground_Below_skyrat.dmm"
#include "map_files\tramstation\tramstation_skyrat.dmm"
#include "map_files\Blueshift\Blueshift.dmm"
#include "map_files\NSSJourney\NSSJourney.dmm"
#include "map_files\WaterKiloStation\WaterKiloStation.dmm"
#include "map_files\WaterKiloStation\WaterKiloBelow.dmm"
// The mining maps
#include "map_files\Mining\Icemoon.dmm"
#include "map_files\Mining\Rockplanet.dmm"
#include "map_files\Mining\TidalLock.dmm"
// SKYRAT EDIT END
#ifdef CIBUILDING
#include "templates.dm"
#endif
#endif
#endif