diff --git a/auxmos.dll b/auxmos.dll index b2ba2d9fd6..0073f50c2e 100644 Binary files a/auxmos.dll and b/auxmos.dll differ diff --git a/auxmos.pdb b/auxmos.pdb index 281c4c0115..a642be488c 100644 Binary files a/auxmos.pdb and b/auxmos.pdb differ diff --git a/code/modules/atmospherics/gasmixtures/gas_mixture.dm b/code/modules/atmospherics/gasmixtures/gas_mixture.dm index 39f948c176..991d34ca6c 100644 --- a/code/modules/atmospherics/gasmixtures/gas_mixture.dm +++ b/code/modules/atmospherics/gasmixtures/gas_mixture.dm @@ -252,13 +252,7 @@ GLOBAL_LIST_INIT(auxtools_atmos_initialized,FALSE) /datum/gas_mixture/copy_from_turf(turf/model) parse_gas_string(model.initial_gas_mix) - - //acounts for changes in temperature - var/turf/model_parent = model.parent_type - var/model_temp = model.return_temperature() - if(isfinite(model_temp) && (model_temp != initial(model.initial_temperature) || model_temp != initial(model_parent.initial_temperature))) - set_temperature(model_temp) - + set_temperature(initial(model.initial_temperature)) return 1 /datum/gas_mixture/parse_gas_string(gas_string)