Fixes temperature not causing turfs to activate (#25587)

This commit is contained in:
Cyberboss
2017-03-31 20:13:07 +02:00
committed by AnturK
parent 7377e0aa6e
commit 12080f8e61
@@ -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 ""