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 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')