From 7fee953ceb9037b42c09bdf7351da7e95e475889 Mon Sep 17 00:00:00 2001 From: Will <7099514+Willburd@users.noreply.github.com> Date: Sat, 11 Oct 2025 16:45:14 -0400 Subject: [PATCH] Water distilling reaction tweaks (#18602) * water reactions * not burning phoron anymore --- code/modules/reagents/reactions/distilling/distilling.dm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/code/modules/reagents/reactions/distilling/distilling.dm b/code/modules/reagents/reactions/distilling/distilling.dm index 87ee08fbe6..aaed36e030 100644 --- a/code/modules/reagents/reactions/distilling/distilling.dm +++ b/code/modules/reagents/reactions/distilling/distilling.dm @@ -274,12 +274,13 @@ result = REAGENT_ID_HYDROGEN inhibitors = list(REAGENT_ID_CARBON = 1) required_reagents = list(REAGENT_ID_WATER = 1) + catalysts = list(REAGENT_ID_PLATINUM = 1) result_amount = 2 temp_range = list(T20C + 110, T20C + 290) - temp_shift = 3 // It's burning off phoron + temp_shift = 1 - require_xgm_gas = GAS_PHORON + require_xgm_gas = GAS_N2 rejects_xgm_gas = GAS_O2 /decl/chemical_reaction/distilling/oxygen @@ -288,13 +289,13 @@ result = REAGENT_ID_OXYGEN inhibitors = list(REAGENT_ID_CARBON = 1) required_reagents = list(REAGENT_ID_WATER = 1) - catalysts = list(REAGENT_ID_PHORON = 1) + catalysts = list(REAGENT_ID_PLATINUM = 1) result_amount = 1 temp_range = list(T20C + 150, T20C + 320) temp_shift = 3 // It's burning off phoron - require_xgm_gas = GAS_N2 + require_xgm_gas = GAS_PHORON rejects_xgm_gas = GAS_O2 /decl/chemical_reaction/distilling/mineralized_sodium