From 12080f8e61e8cd02eef2dd80ab7ede53f1e9bc62 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Fri, 31 Mar 2017 14:13:07 -0400 Subject: [PATCH] Fixes temperature not causing turfs to activate (#25587) --- code/modules/atmospherics/gasmixtures/gas_mixture.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 ""