mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 19:22:56 +00:00
The first round of compiling done in travis build is to test the submaps. It will complete faster if we do not include the main map during this round; the main map gets compiled and checked in the second round anyway.
15 lines
691 B
Plaintext
15 lines
691 B
Plaintext
#define BACKGROUND_ENABLED 0 // The default value for all uses of set background. Set background can cause gradual lag and is recommended you only turn this on if necessary.
|
|
// 1 will enable set background. 0 will disable set background.
|
|
|
|
#define PRELOAD_RSC 1 /*set to:
|
|
0 to allow using external resources or on-demand behaviour;
|
|
1 to use the default behaviour (preload compiled in recourses, not player uploaded ones);
|
|
2 for preloading absolutely everything;
|
|
*/
|
|
|
|
// If we are doing the map test build, do not include the main maps, only the submaps.
|
|
#if MAP_TEST
|
|
#define USING_MAP_DATUM /datum/map
|
|
#define MAP_OVERRIDE 1
|
|
#endif
|