mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-14 04:02:07 +00:00
* Linter diagnostics + bans non-var relative pathing * Enable DreamChecker Annotations * make it executable * update hashFiles * oops * tries to fix it... again * trying again * path * repath * fix perms * fixes weird capitalisation issue
16 lines
536 B
Plaintext
16 lines
536 B
Plaintext
/obj/effect/landmark/map_data
|
|
name = "Unknown"
|
|
desc = "An unknown location."
|
|
invisibility = 101
|
|
|
|
var/height = 1 ///< The number of Z-Levels in the map.
|
|
var/turf/edge_type ///< What the map edge should be formed with. (null = world.turf)
|
|
|
|
// FOR THE LOVE OF GOD USE THESE. DO NOT FUCKING SPAGHETTIFY THIS.
|
|
// Use the Has*() functions if you ONLY need to check.
|
|
// If you need to do something, use Get*().
|
|
/HasAbove(var/z)
|
|
/HasBelow(var/z)
|
|
// These give either the turf or null.
|
|
/GetAbove(var/atom/atom)
|
|
/GetBelow(var/atom/atom) |