Skip to content

Commit

Permalink
Merge pull request tgstation#14995 from WJohn/efficiency3
Browse files Browse the repository at this point in the history
Adds Efficiency Station
  • Loading branch information
tkdrg committed Jan 30, 2016
2 parents 93bcba0 + 9dc985e commit 6bfc564
Show file tree
Hide file tree
Showing 4 changed files with 6,214 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ env:
- DM_MAPFILE="dreamstation"
- DM_MAPFILE="birdstation"
- DM_MAPFILE="asteroidstation"
- DM_MAPFILE="efficiencystation"


cache:
Expand Down
36 changes: 36 additions & 0 deletions _maps/efficiencystation.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/*
The /tg/ codebase currently requires you to have 7 z-levels of the same size dimensions.
z-level order is important, the order you put them in inside this file will determine what z level number they are assigned ingame.
Names of z-level do not matter, but order does greatly, for instances such as checking alive status of revheads on z1
current as of 2014/11/24
z1 = station
z2 = centcomm
z3 = derelict telecomms satellite
z4 = derelict station
z5 = mining
z6 = empty space
z7 = empty space
*/

#if !defined(MAP_FILE)

#include "map_files\EfficiencyStation\EfficiencyStation.dmm"
#include "map_files\generic\z2.dmm"
#include "map_files\generic\z3.dmm"
#include "map_files\generic\z4.dmm"
#include "map_files\generic\z5.dmm"
#include "map_files\generic\z6.dmm"
#include "map_files\generic\z7.dmm"

#define MAP_PATH "map_files/EfficiencyStation"
#define MAP_FILE "EfficiencyStation.dmm"
#define MAP_NAME "Efficiency Station"

#define MAP_TRANSITION_CONFIG list(MAIN_STATION = CROSSLINKED, CENTCOMM = SELFLOOPING, ABANDONED_SATELLITE = CROSSLINKED, DERELICT = CROSSLINKED, MINING = CROSSLINKED, EMPTY_AREA_1 = CROSSLINKED, EMPTY_AREA_2 = CROSSLINKED)

#elif !defined(MAP_OVERRIDE)

#warn a map has already been included, ignoring Efficiency Station.

#endif
Loading

0 comments on commit 6bfc564

Please sign in to comment.