From 7a779f389f3567afcff37908a295760c6239c424 Mon Sep 17 00:00:00 2001 From: Swan Date: Sun, 15 Dec 2024 17:18:17 +0100 Subject: [PATCH] made priority a sane number, added max reaction temp, changed comments --- .../code/modules/atmospherics/gasmixtures/reactions.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/GainStation13/code/modules/atmospherics/gasmixtures/reactions.dm b/GainStation13/code/modules/atmospherics/gasmixtures/reactions.dm index 0057a6e6fb..b36520cd38 100644 --- a/GainStation13/code/modules/atmospherics/gasmixtures/reactions.dm +++ b/GainStation13/code/modules/atmospherics/gasmixtures/reactions.dm @@ -1,17 +1,17 @@ /datum/gas_reaction/lipoifium_formation - priority = 12345 // TODO: change this shit + priority = 7 name = "Lipoifium Formation" id = "lipoifium_formation" /datum/gas_reaction/lipoifium_formation/init_reqs() - min_requirements = list(// TODO: change this shit + min_requirements = list( + "MAX_TEMP" = 100 GAS_BZ = 15, GAS_TRITIUM = 15 ) /datum/gas_reaction/lipoifium_formation/react(datum/gas_mixture/air) - //var/temperature = air.return_temperature() - // TODO: figure out what the fuck adjust_moles do + // TODO: make the reaction exothermic, and make it more efficient at lower temperatures air.adjust_moles(GAS_FAT, 1) air.adjust_moles(GAS_PLASMA, -1) air.adjust_moles(GAS_N2, -1)