diff --git a/code/modules/atmospherics/gasmixtures/gas_mixture.dm b/code/modules/atmospherics/gasmixtures/gas_mixture.dm index 0c9649bc92d..4ccdb001b13 100644 --- a/code/modules/atmospherics/gasmixtures/gas_mixture.dm +++ b/code/modules/atmospherics/gasmixtures/gas_mixture.dm @@ -546,8 +546,7 @@ var/list/gaslist_cache = null sample_temp = sample.temperature_archived var/temperature_delta = abs(temp - sample_temp) - if((temperature_delta > MINIMUM_TEMPERATURE_DELTA_TO_SUSPEND) && \ - temperature_delta > MINIMUM_TEMPERATURE_DELTA_TO_SUSPEND * temp) + if(temperature_delta > MINIMUM_TEMPERATURE_DELTA_TO_SUSPEND) return "temp" return ""