Fixes nitrium being incorrectly labeled (#21939)

* Update atmospherics.dm

* the REAL problem
This commit is contained in:
SapphicOverload
2024-04-26 22:54:00 -04:00
committed by GitHub
parent 8e29d44e74
commit 89fe2ab85d
2 changed files with 2 additions and 2 deletions

View File

@@ -475,7 +475,7 @@ DEFINE_BITFIELD(vent_movement, list(
#define GAS_H2O "water_vapor"
#define GAS_HYPERNOB "hypernob"
#define GAS_NITROUS "n2o"
#define GAS_NITRIUM "no2"
#define GAS_NITRIUM "nitrium"
#define GAS_TRITIUM "tritium"
#define GAS_BZ "bz"
#define GAS_PLUOXIUM "pluox"

View File

@@ -296,7 +296,7 @@
requirements = list("To create [selected_recipe.name] you will need:")
for(var/gas_type in selected_recipe.requirements)
var/amount_consumed = selected_recipe.requirements[gas_type]
requirements += "-[amount_consumed] moles of [initial(gas_type)]"
requirements += "-[amount_consumed] moles of [GLOB.gas_data.names[gas_type]]"
requirements += "In a temperature range between [selected_recipe.min_temp] K and [selected_recipe.max_temp] K"
requirements += "The crystallization reaction will be [selected_recipe.energy_release ? (selected_recipe.energy_release > 0 ? "exothermic" : "endothermic") : "thermally neutral"]"
data["requirements"] = requirements.Join("\n")