This commit is contained in:
Pyritie
2026-02-22 14:02:26 +00:00
parent edeb999491
commit f4437bab8a
2 changed files with 9 additions and 4 deletions

View File

@@ -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

View File

@@ -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