From fc95da1557e8ace3db1a2c3c69260f55e7f3755b Mon Sep 17 00:00:00 2001 From: Swan <122107181+NiceNiceSwan@users.noreply.github.com> Date: Thu, 12 Dec 2024 19:56:29 +0100 Subject: [PATCH] added TODO's --- .../code/modules/atmospherics/gasmixtures/reactions.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/GainStation13/code/modules/atmospherics/gasmixtures/reactions.dm b/GainStation13/code/modules/atmospherics/gasmixtures/reactions.dm index bc84827e54..79776a9ee4 100644 --- a/GainStation13/code/modules/atmospherics/gasmixtures/reactions.dm +++ b/GainStation13/code/modules/atmospherics/gasmixtures/reactions.dm @@ -1,16 +1,17 @@ /datum/gas_reaction/lipoifium_formation - priority = 12345 + priority = 12345 // TODO: change this shit name = "Lipoifium Formation" id = "lipoifium_formation" /datum/gas_reaction/lipoifium_formation/init_reqs() - min_requirements = list( + min_requirements = list(// TODO: change this shit GAS_PLASMA = 20, GAS_N2 = 20 ) /datum/gas_reaction/lipoifium_formation/react(datum/gas_mixture/air) //var/temperature = air.return_temperature() + // TODO: figure out what the fuck adjust_moles do air.adjust_moles(GAS_FAT, 1) air.adjust_moles(GAS_PLASMA, -1) air.adjust_moles(GAS_N2, -1)