diff --git a/CHANGELOG.md b/CHANGELOG.md index 6317f081d..a2f15de02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ - Fixed ingot extruder mold recipe conflict @BlueBoat29 - Fixed wire cutter head extruder recipes missing a mold @Pyritie - Possibly fixed the issue with airplanes and akistor carts not appearing when placing them (#1447) @Pyritie +- Fixed not being able to make sea water with TFC salt in a barrel (#1476) @Pyritie ### Translations - Ukranian @Furryks diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index b91c6dcf4..4a890a506 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -313,4 +313,10 @@ const registerTFCRecipes = (event) => { .inputFluid(Fluid.of('minecraft:water', 1000)) .outputFluid(Fluid.of('tfc:salt_water', 1000)) .id('tfg:barrel/water_to_salt_water') + + event.recipes.tfc.barrel_instant() + .inputItem("tfc:powder/salt") + .inputFluid(Fluid.of('minecraft:water', 250)) + .outputFluid(Fluid.of('tfc:salt_water', 250)) + .id('tfg:barrel/water_to_salt_water_tfc') }