Files
CHOMPStation2/maps/~map_system/_map_selection.dm
CHOMPStation2StaffMirrorBot 651c8bc1af [MIRROR] Simultaneous map definitions (#10295)
Co-authored-by: Drathek <76988376+Drulikar@users.noreply.github.com>
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
Co-authored-by: Kashargul <KashL@t-online.de>
2025-08-10 00:51:17 +02:00

40 lines
689 B
Plaintext

#if !defined(CITESTING)
/*********************/
/* MAP SELECTION */
/* FOR LIVE SERVER */
/*********************/
// #define USE_MAP_TETHER
#define USE_MAP_STELLARDELIGHT
// #define USE_MAP_GROUNDBASE
// Debug
//#define USE_MAP_MINITEST
/*********************/
/* End Map Selection */
/*********************/
#endif
// Tether
#ifdef USE_MAP_TETHER
#include "../tether/tether.dm"
#endif
// Stellar Delight
#ifdef USE_MAP_STELLARDELIGHT
#include "../stellar_delight/stellar_delight.dm"
#endif
// Groundbase
#ifdef USE_MAP_GROUNDBASE
#include "../groundbase/groundbase.dm"
#endif
// Debug: Minitest
#ifdef USE_MAP_MINITEST
#include "../virgo_minitest/virgo_minitest.dm"
#endif