fixes #1445, also added gt recipes to make alcohol for bio diesel

This commit is contained in:
Pyritie 2025-07-29 18:44:20 +01:00
parent b026feb2e8
commit 903be368b2
4 changed files with 23 additions and 10 deletions

View file

@ -719,6 +719,17 @@ function registerTFGFoodRecipes(event) {
itemOutputProvider: TFC.isp.of('firmalife:food/soy_mixture').copyOldestFood()
})
// Alcohols
global.TFC_ALCOHOL.forEach(alcohol => {
processorRecipe(alcohol.id.replace(/:/g, "_"), 2400, 1, {
itemInputs: [alcohol.ingredient],
fluidInputs: ['#tfg:clean_water 500', 'firmalife:yeast_starter 10'],
fluidOutputs: [Fluid.of(alcohol.id, 500)],
circuit: 11
}).notConsumable('#tfc:barrels')
})
// Cakes
processorRecipe("cake_base", 300, 8, {