This commit is contained in:
Pyritie 2025-07-29 17:47:24 +01:00
parent ed8bb14822
commit 5582be75d2
2 changed files with 7 additions and 0 deletions

View file

@ -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

View file

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