From 91c3596a7f6654b609823a749b9cfbda3d03ae45 Mon Sep 17 00:00:00 2001 From: cib Date: Tue, 11 Dec 2012 20:20:12 +0100 Subject: [PATCH] Remove the space cold exchange once again. Must've undone that change by mistake. --- code/ZAS/ZAS_Zones.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/ZAS/ZAS_Zones.dm b/code/ZAS/ZAS_Zones.dm index b3fd2704ae3..cdafc5f3b3a 100644 --- a/code/ZAS/ZAS_Zones.dm +++ b/code/ZAS/ZAS_Zones.dm @@ -372,7 +372,8 @@ proc/ShareSpace(datum/gas_mixture/A, list/unsimulated_tiles) A.carbon_dioxide = max(0, (A.carbon_dioxide - co2_avg) * (1-ratio) + co2_avg ) A.toxins = max(0, (A.toxins - plasma_avg) * (1-ratio) + plasma_avg ) - A.temperature = max(TCMB, (A.temperature - temp_avg) * (1-ratio) + temp_avg ) + // EXPERIMENTAL: Disable space being cold + //A.temperature = max(TCMB, (A.temperature - temp_avg) * (1-ratio) + temp_avg ) for(var/datum/gas/G in A.trace_gases) var/G_avg = (G.moles*size + 0) / (size+share_size)