From 64643ee402012ea6eedc3cda24f8f3bc412e48e4 Mon Sep 17 00:00:00 2001 From: AndrewJacksonThe2nd Date: Tue, 30 Aug 2016 23:37:12 -0700 Subject: [PATCH] code memes --- code/modules/atmospherics/gasmixtures/gas_mixture.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/atmospherics/gasmixtures/gas_mixture.dm b/code/modules/atmospherics/gasmixtures/gas_mixture.dm index 2d72f8cc43a..6f33ecff435 100644 --- a/code/modules/atmospherics/gasmixtures/gas_mixture.dm +++ b/code/modules/atmospherics/gasmixtures/gas_mixture.dm @@ -185,11 +185,14 @@ var/list/gaslist_cache = null if(cached_gases["freon"][MOLES] >= MOLES_PLASMA_VISIBLE) if(holder.freon_gas_act()) cached_gases["freon"][MOLES] -= MOLES_PLASMA_VISIBLE + if(temperature >= 3) + temperature -= 3 if(cached_gases["water_vapor"]) if(cached_gases["water_vapor"][MOLES] >= MOLES_PLASMA_VISIBLE) if(holder.water_vapor_gas_act()) cached_gases["water_vapor"][MOLES] -= MOLES_PLASMA_VISIBLE + temperature += 3 fuel_burnt = 0 if(temperature > FIRE_MINIMUM_TEMPERATURE_TO_EXIST)