Files
Paradise/code/__DEFINES/zlevel_defines.dm
AffectedArc07 b34e8fa301 [READY] CI now bans files with the same name (#20195)
* CI now bans files with the same name

* Part 1

* Warriorstar python tweaks

* Part Deux

* Fix unticked

* fix
2023-02-04 16:33:41 -06:00

13 lines
464 B
Plaintext

#define Z_LEVEL_NORTH "1"
#define Z_LEVEL_SOUTH "2"
#define Z_LEVEL_EAST "4"
#define Z_LEVEL_WEST "8"
#define TRANSITIONEDGE 7 //Distance from edge to move to another z-level
// Defining these here so everything is consistent
#define TRANSITION_BORDER_NORTH (world.maxy - TRANSITIONEDGE - 1)
#define TRANSITION_BORDER_SOUTH TRANSITIONEDGE
#define TRANSITION_BORDER_EAST (world.maxx - TRANSITIONEDGE - 1)
#define TRANSITION_BORDER_WEST TRANSITIONEDGE