diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a646ef24..e2980760a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Added fanfare effects to the railgun launcher multiblock. (#1557) @Redeix ### Bug fixes - Fixed a broken model for the aqueous accumulator. (#1557) @Redeix +- Fixed broken recipes for the aqueous accumulator. @Pyritie ## [0.10.7] - 07-08-2025 - Fixed an issue with mod dependencies diff --git a/kubejs/server_scripts/tfg/recipes.space.js b/kubejs/server_scripts/tfg/recipes.space.js index 4cfc84a71..d596ffbe0 100644 --- a/kubejs/server_scripts/tfg/recipes.space.js +++ b/kubejs/server_scripts/tfg/recipes.space.js @@ -56,28 +56,30 @@ function registerTFGSpaceRecipes(event) { .EUt(16) // Aqueous accumulator - + + let aaCircuit = 1; event.recipes.gtceu.aqueous_accumulator('water') + .circuit(aaCircuit++) .duration(20) .EUt(GTValues.VHA[GTValues.ULV]) .addDataString("fluidA", "minecraft:water") .outputFluids(Fluid.of("minecraft:water", 1000)) event.recipes.gtceu.aqueous_accumulator('sea_water') + .circuit(aaCircuit++) .duration(20) .EUt(GTValues.VA[GTValues.ULV]) .addDataString("fluidA", "tfc:salt_water") .outputFluids(Fluid.of("tfc:salt_water", 1000)) event.recipes.gtceu.aqueous_accumulator('semiheavy_water_mars') + .circuit(aaCircuit++) .dimension('ad_astra:mars') .duration(20) .EUt(GTValues.VHA[GTValues.ULV]) .addDataString("fluidA", "tfg:semiheavy_ammoniacal_water") .outputFluids(Fluid.of("tfg:semiheavy_ammoniacal_water", 1000)) - - let aaCircuit = 1; event.recipes.gtceu.aqueous_accumulator('lava_overworld') .circuit(aaCircuit++)