diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index 69cc8d19c..2cb401eb8 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -2982,6 +2982,14 @@ const registerTFCRecipes = (event) => { generateGreenHouseRecipe(event, element.input, element.fluid_amount, element.output, element.name) }) + // Растения + Ingredient.of('#tfc:plants').stacks.forEach(element => { + const itemId = element.id; + const recipeId = `greenhouse_${itemId.replace(':', '_')}`; + + generateGreenHouseRecipe(event, itemId, 8000, `8x ${itemId}`, recipeId); + }); + //#endregion //#region Рецепты плоского теста