From b1d05d49566456c617b6224fb6bc01953b8023be Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Thu, 13 Jan 2022 20:25:53 -0800 Subject: [PATCH] Fixes hydrogen fires to have right products --- code/modules/atmospherics/auxgm/gas_types.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/atmospherics/auxgm/gas_types.dm b/code/modules/atmospherics/auxgm/gas_types.dm index 8c9b1495c6..c984d0df08 100644 --- a/code/modules/atmospherics/auxgm/gas_types.dm +++ b/code/modules/atmospherics/auxgm/gas_types.dm @@ -113,7 +113,7 @@ powermix = 1 heat_penalty = 3 transmit_modifier = 10 - fire_products = list(GAS_H2O = 2) + fire_products = list(GAS_H2O = 1) fire_burn_rate = 2 fire_temperature = FIRE_MINIMUM_TEMPERATURE_TO_EXIST - 50 @@ -128,7 +128,7 @@ powermix = 1 heat_penalty = 10 transmit_modifier = 30 - fire_products = list(GAS_H2O = 2) + fire_products = list(GAS_H2O = 1) fire_burn_rate = 2 fire_radiation_released = 50 // arbitrary number, basically 60 moles of trit burning will just barely start to harm you fire_temperature = FIRE_MINIMUM_TEMPERATURE_TO_EXIST - 50