From 8a6e092494cd93098eedcfb60b12d3c0ec536ad8 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Sat, 27 Jan 2018 15:37:00 -0500 Subject: [PATCH] Do not include main map during submap testing --- code/__defines/_compile_options.dm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/code/__defines/_compile_options.dm b/code/__defines/_compile_options.dm index e71ced7e29a..3190e391a46 100644 --- a/code/__defines/_compile_options.dm +++ b/code/__defines/_compile_options.dm @@ -5,4 +5,10 @@ 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; - */ \ No newline at end of file + */ + +// 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