fixes #1476
This commit is contained in:
parent
ed8bb14822
commit
5582be75d2
2 changed files with 7 additions and 0 deletions
|
|
@ -20,6 +20,7 @@
|
||||||
- Fixed ingot extruder mold recipe conflict @BlueBoat29
|
- Fixed ingot extruder mold recipe conflict @BlueBoat29
|
||||||
- Fixed wire cutter head extruder recipes missing a mold @Pyritie
|
- 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
|
- 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
|
### Translations
|
||||||
- Ukranian @Furryks
|
- Ukranian @Furryks
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -313,4 +313,10 @@ const registerTFCRecipes = (event) => {
|
||||||
.inputFluid(Fluid.of('minecraft:water', 1000))
|
.inputFluid(Fluid.of('minecraft:water', 1000))
|
||||||
.outputFluid(Fluid.of('tfc:salt_water', 1000))
|
.outputFluid(Fluid.of('tfc:salt_water', 1000))
|
||||||
.id('tfg:barrel/water_to_salt_water')
|
.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')
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue