mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 01:57:01 +00:00
* Nanotrasen fires the Wave Motion Gun at the Clock Cult * Fixes a random changelog appearing from the reebe void. * Fixes a wrong type reference regarding the bronze sheets in the Lavaland Ruin for it. * Fixes redundant cells after CC removal in ruin by populating them with varied ore chunks, or destruction clutter. * why is it /obj/item/stack/sheet/metal but not /obj/item/stack/sheet/iron * Fixes the lavaland ratvar ruin to have fluff variant structures of deleted shit it referenced instead what I thought was reasonable.
13 lines
437 B
Plaintext
13 lines
437 B
Plaintext
// Helpers for checking whether a z-level conforms to a specific requirement
|
|
|
|
// Basic levels
|
|
#define is_centcom_level(z) SSmapping.level_trait(z, ZTRAIT_CENTCOM)
|
|
|
|
#define is_station_level(z) SSmapping.level_trait(z, ZTRAIT_STATION)
|
|
|
|
#define is_mining_level(z) SSmapping.level_trait(z, ZTRAIT_MINING)
|
|
|
|
#define is_reserved_level(z) SSmapping.level_trait(z, ZTRAIT_RESERVED)
|
|
|
|
#define is_away_level(z) SSmapping.level_trait(z, ZTRAIT_AWAY)
|