From f4437bab8a655a97d7e2d96812d193d4933cd311 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Sun, 22 Feb 2026 14:02:26 +0000 Subject: [PATCH] fix #3147 --- CHANGELOG.md | 1 + kubejs/server_scripts/tfc_gurman/recipes.js | 12 ++++++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c37367a98..561909ee5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ ### Changes ### Bug fixes - Fixed some tongs melting into unusable TFC metal fluids @Pyritie +- Fixed drying tea ingredients in a food processor outputting nothing (#3147) @Pyritie ### Translation updates ## [0.11.23] - 21-02-2026 diff --git a/kubejs/server_scripts/tfc_gurman/recipes.js b/kubejs/server_scripts/tfc_gurman/recipes.js index b5b7bd351..20741b87a 100644 --- a/kubejs/server_scripts/tfc_gurman/recipes.js +++ b/kubejs/server_scripts/tfc_gurman/recipes.js @@ -506,28 +506,32 @@ function registerTFCGurmanRecipes(event) { itemInputs: ["tfc:plant/foxglove"], fluidInputs: ['gtceu:nitrogen 100'], itemOutputs: ["tfc_gourmet:dried_mint_leaves"], - circuit: 6 + circuit: 6, + itemOutputProvider: TFC.isp.of('tfc_gourmet:dried_mint_leaves') }); global.processorRecipeText(event, 'dried_chamomile', 200, GTValues.VA[GTValues.LV], "tfg.food_recipe.drying", { itemInputs: ["tfc:plant/lilac"], fluidInputs: ['gtceu:nitrogen 100'], itemOutputs: ["tfc_gourmet:dried_chamomile_leaves"], - circuit: 6 + circuit: 6, + itemOutputProvider: TFC.isp.of('tfc_gourmet:dried_chamomile_leaves') }); global.processorRecipeText(event, 'dried_rosehip', 200, GTValues.VA[GTValues.LV], "tfg.food_recipe.drying", { itemInputs: ["tfc:plant/rose"], fluidInputs: ['gtceu:nitrogen 100'], itemOutputs: ["tfc_gourmet:dried_rosehip_leaves"], - circuit: 6 + circuit: 6, + itemOutputProvider: TFC.isp.of('tfc_gourmet:dried_rosehip_leaves') }); global.processorRecipeText(event, 'dried_nettle', 200, GTValues.VA[GTValues.LV], "tfg.food_recipe.drying", { itemInputs: ["tfc:plant/trillium"], fluidInputs: ['gtceu:nitrogen 100'], itemOutputs: ["tfc_gourmet:dried_nettle_leaves"], - circuit: 6 + circuit: 6, + itemOutputProvider: TFC.isp.of('tfc_gourmet:dried_nettle_leaves') }); // #endregion Drying