From d1fc9329b3616c38ebb385cc3a80d2ac59de7a50 Mon Sep 17 00:00:00 2001 From: Ghilke Date: Sat, 29 Aug 2020 22:27:58 +0200 Subject: [PATCH] min max the freon fire --- code/modules/atmospherics/gasmixtures/reactions.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/atmospherics/gasmixtures/reactions.dm b/code/modules/atmospherics/gasmixtures/reactions.dm index af9c16e3c8c..cfc16c48773 100644 --- a/code/modules/atmospherics/gasmixtures/reactions.dm +++ b/code/modules/atmospherics/gasmixtures/reactions.dm @@ -285,7 +285,9 @@ nobiliumsuppression = INFINITY /datum/gas_reaction/freonfire/init_reqs() min_requirements = list( /datum/gas/oxygen = MINIMUM_MOLE_COUNT, - /datum/gas/freon = MINIMUM_MOLE_COUNT + /datum/gas/freon = MINIMUM_MOLE_COUNT, + "TEMP" = FREON_LOWER_TEMPERATURE, + "MAX_TEMP" = FREON_MAXIMUM_BURN_TEMPERATURE ) /datum/gas_reaction/freonfire/react(datum/gas_mixture/air, datum/holder)