added fluid parameter to the greenhouse recipe builder

This commit is contained in:
Pyritie 2025-07-28 21:04:10 +01:00
parent e83833bcf5
commit e804a8a9dd
6 changed files with 35 additions and 18 deletions

View file

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