Files
b5f3de6ebd [MIRROR] More Plumbing Fixes & Pill Press UI Changes [MDB IGNORE] (#24458)
* More Plumbing Fixes & Pill Press UI Changes

* Fixing diffs/ modular stuff

* Modular

* Update reagents.dm

* Update pill_press.dm

* Update pill_press.dm

* Update pill_press.dm

---------

Co-authored-by: SyncIt21 <110812394+SyncIt21@users.noreply.github.com>
Co-authored-by: Giz <13398309+vinylspiders@users.noreply.github.com>
2023-10-20 08:15:08 +00:00

18 lines
576 B
Plaintext

/// List of plumbing layers as name => bitflag
GLOBAL_LIST_INIT(plumbing_layers, list(
"First Layer" = FIRST_DUCT_LAYER,
"Second Layer" = SECOND_DUCT_LAYER,
"Default Layer" = THIRD_DUCT_LAYER,
"Fourth Layer" = FOURTH_DUCT_LAYER,
"Fifth Layer" = FIFTH_DUCT_LAYER,
))
/// Reverse of plumbing_layers, as "[bitflag]" => name
GLOBAL_LIST_INIT(plumbing_layer_names, list(
"[FIRST_DUCT_LAYER]" = "First Layer",
"[SECOND_DUCT_LAYER]" = "Second Layer",
"[THIRD_DUCT_LAYER]" = "Default Layer",
"[FOURTH_DUCT_LAYER]" = "Fourth Layer",
"[FIFTH_DUCT_LAYER]" = "Fifth Layer",
))