forked from tgstation/tgstation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds a warning message when more than one map is included.
Tweaked dm.sh to ignore this message when it sets a single map to be included. Signed-off-by: Mloc <[email protected]>
- Loading branch information
Showing
3 changed files
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
#ifndef MAP_FILE | ||
#if !defined(MAP_FILE) | ||
|
||
#include "map_files\MetaStation.v39A.III.dmm" | ||
|
||
#define MAP_FILE "MetaStation.v39A.III.dmm" | ||
#define MAP_NAME "MetaStation" | ||
|
||
#elif !defined(MAP_OVERRIDE) | ||
|
||
#warn a map has already been included, ignoring MetaStation. | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
#ifndef MAP_FILE | ||
#if !defined(MAP_FILE) | ||
|
||
#include "map_files\tgstation.2.1.2.dmm" | ||
|
||
#define MAP_FILE "tgstation.2.1.2.dmm" | ||
#define MAP_NAME "/tg/station 2" | ||
|
||
#elif !defined(MAP_OVERRIDE) | ||
|
||
#warn a map has already been included, ignoring /tg/station 2. | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters