mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 13:38:41 +01:00
Makes gasses use defines (#75542)
## About The Pull Request Adds defines for gasses and replaces uses I've found to instead use the defines. Can you believe I made this PR while trying to work with Xenos? This sucks! ## Why It's Good For The Game There's a lot of different uses of things like "o2" and "plasma", and they are pretty inconsistent. In some places, it's "hydrogen", in others it's "h2". In some it's "plasma", others "plasm". This unifies it all under defines so it has a less chance of breaking in the future. ## Changelog Nothing player-facing.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
/// ## A bunch of turf subtypes used to really make this ruin work.
|
||||
|
||||
/// Define of the specific gas mix we want across all of the turfs.
|
||||
#define CO2_PRESSURIZED_MIX "o2=22;n2=82;co2=500;TEMP=293.15"
|
||||
#define CO2_PRESSURIZED_MIX GAS_O2 + "=22;" + GAS_N2 + "=82;" + GAS_CO2 + "=500;TEMP=T20C"
|
||||
|
||||
/turf/open/floor/iron/co2_pressurized
|
||||
initial_gas_mix = CO2_PRESSURIZED_MIX
|
||||
|
||||
Reference in New Issue
Block a user