From a09661dd3e71712f609d530f5641c5485c14e2f7 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Sat, 9 Aug 2025 02:12:59 +0100 Subject: [PATCH 1/2] lye -> sodium hydroxide --- kubejs/server_scripts/tfc/recipes.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index 07f29250f..b8fac6c54 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -208,6 +208,22 @@ const registerTFCRecipes = (event) => { generateMixerRecipe(event, '#forge:dusts/sodium_hydroxide', "#tfg:clean_water 1000", [], null, Fluid.of('tfc:lye', 1000), 100, 2, 64, 'lye_from_NaOH') + event.recipes.tfc.pot([], Fluid.of('tfc:lye', 1000), 100, 80) + .itemOutput('gtceu:sodium_hydroxide_dust') + .id('tfg:pot/sodium_hydroxide') + + event.recipes.firmalife.vat() + .inputFluid(Fluid.of('tfc:lye', 1000)) + .outputItem('gtceu:sodium_hydroxide_dust') + .length(100) + .temperature(80) + + event.recipes.gtceu.distillery('lye_to_sodium_hydroxide') + .inputFluids('tfc:lye 1000') + .itemOutputs('gtceu:sodium_hydroxide_dust') + .duration(100) + .EUt(2) + // Brass Mechanism event.recipes.shapeless('gtceu:small_brass_gear', [ 'tfc:brass_mechanisms' ]).id('tfg:replace_brass_mechanisms') event.replaceInput({ input: 'tfc:brass_mechanisms' }, 'tfc:brass_mechanisms', 'gtceu:small_brass_gear') From 2e4601667802b40017fc28c6a2b76522328ef0fb Mon Sep 17 00:00:00 2001 From: Pyritie Date: Sat, 9 Aug 2025 02:13:44 +0100 Subject: [PATCH 2/2] changelog for #1554 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85374be09..e8b99dece 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - Added some chalk stick knapping recipes (#1562) @3ncanis - The Vitrified Ender Pearl recipe now only accepts normal ender pearls (#1567) @TomPlop - Buffed production of fish oil and biomass amounts, tweaked biodiesel recipe slightly @Pyritie +- Added compatibility between ad astra's 3x3 doors and GregTech wrenches (#1554) @Pyritie ### Bug fixes - Fixed a broken model for the aqueous accumulator. (#1557) @Redeix - Fixed broken recipes for the aqueous accumulator. @Pyritie