From a6d1629db33b7f67c7ff76d066321e05d4e23c51 Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Mon, 18 May 2026 16:32:34 -0700 Subject: [PATCH] [MIRROR] Fix a rare gas scrubbing runtime (#12762) Co-authored-by: Will <7099514+Willburd@users.noreply.github.com> --- code/modules/xgm/xgm_gas_mixture.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/xgm/xgm_gas_mixture.dm b/code/modules/xgm/xgm_gas_mixture.dm index 71dc1e03ef..d524ef0273 100644 --- a/code/modules/xgm/xgm_gas_mixture.dm +++ b/code/modules/xgm/xgm_gas_mixture.dm @@ -3,7 +3,7 @@ //Gases with 0 moles are not tracked and are pruned by update_values() var/list/gas //Temperature in Kelvin of this gas mix. - var/temperature = 0 + var/temperature = TCMB //Sum of all the gas moles in this mix. Updated by update_values() var/total_moles = 0