now only the recipes that use 8 inputs actually use 8 fertiliser

This commit is contained in:
Pyritie 2025-06-29 20:36:25 +01:00
parent 7519e85fea
commit 27692fdf40
3 changed files with 10 additions and 10 deletions

View file

@ -436,12 +436,12 @@ const registerFirmaLifeRecipes = (event) => {
// Семена фруктов
global.FIRMALIFE_GREENHOUSE_FRUIT_RECIPE_COMPONENTS.forEach(element => {
generateGreenHouseRecipe(event, element.input, element.fluid_amount, element.output, element.name, 'minecraft:overworld')
generateGreenHouseRecipe(event, element.input, element.fluid_amount, element.output, element.name, 'minecraft:overworld', 1)
})
// Семена ягод
global.FIRMALIFE_GREENHOUSE_BERRY_RECIPE_COMPONENTS.forEach(element => {
generateGreenHouseRecipe(event, element.input, element.fluid_amount, element.output, element.name, null)
generateGreenHouseRecipe(event, element.input, element.fluid_amount, element.output, element.name, null, 1)
})
//#endregion