mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 14:39:58 +01:00
* 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>
18 lines
576 B
Plaintext
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",
|
|
))
|