add missing borax recipe, remove some other greate crap

This commit is contained in:
Pyritie 2026-01-24 18:54:48 +00:00
parent de8695439b
commit e6a32b5b2e
3 changed files with 13 additions and 1 deletions

View file

@ -9,6 +9,7 @@
- Fixed large miners not outputting crushed ore when mining Migmatite @Pyritie
- Fixed red granite ores never dropping poor or rich raw ores @Pyritie
- Fixed rosin leaves and saplings having tags the wrong way around (#2840) @TanJeeSchuan
- Fixed missing borax to flux recipe @Pyritie
### Translation updates
## [0.11.18] - 23-01-2026

View file

@ -83,5 +83,6 @@ function removeGreateRecipes(event) {
event.remove({ id: 'greate:milling/integration/gtceu/macerator/macerate_honeycomb_block'})
event.remove({ id: 'greate:milling/integration/gtceu/macerator/quartz_sand_from_sand' })
evevt.remove({ id: 'greate:mixing/brass_ingot' })
event.remove({ id: 'greate:mixing/brass_ingot' })
event.remove({ id: /^greate:.*\/integration\/createaddition/ })
}

View file

@ -240,4 +240,14 @@ const registerTFCRecipes = (event) => {
.inputs('#tfc:foods/fruits', TFC.fluidStackIngredient('#tfg:alcohols', 250))
.outputFluid(Fluid.of('tfc:vinegar', 250))
.id('tfc:barrel/vinegar')
// Borax to flux
event.recipes.tfc.quern('4x tfc:powder/flux', 'gtceu:borax_dust')
.id(`tfg:quern/borax`)
event.recipes.gtceu.macerator('borax_to_flux')
.itemInputs("#forge:dusts/borax")
.itemOutputs("4x tfc:powder/flux")
.duration(50)
.EUt(2);
}