From 5582be75d20c4aa66fac5eaeb68819003cdccb91 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Tue, 29 Jul 2025 17:47:24 +0100 Subject: [PATCH] fixes #1476 --- CHANGELOG.md | 1 + kubejs/server_scripts/tfc/recipes.js | 6 ++++++ 2 files changed, 7 insertions(+) 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') }