From 1a68432d1b40155cc450fcff0d189fc2303abe13 Mon Sep 17 00:00:00 2001 From: The Compendium System <91026414+Xaligal@users.noreply.github.com> Date: Thu, 25 Sep 2025 20:20:15 +0200 Subject: [PATCH] Switched tfg:sugars for tfc:sweetener in food processor jam recipes (#1896) Co-authored-by: Xikaro --- kubejs/server_scripts/tfg/recipes.food.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kubejs/server_scripts/tfg/recipes.food.js b/kubejs/server_scripts/tfg/recipes.food.js index 55c9c1f8d..ae5d5dba6 100644 --- a/kubejs/server_scripts/tfg/recipes.food.js +++ b/kubejs/server_scripts/tfg/recipes.food.js @@ -469,7 +469,7 @@ function registerTFGFoodRecipes(event) { global.TFC_JAMS.forEach(name => { processorRecipe(`${name}_jam`, 200, 8, { circuit: 15, - itemInputs: [`4x tfc:food/${name}`, "#tfg:sugars", "4x #tfc:empty_jar_with_lid"], + itemInputs: [`4x tfc:food/${name}`, "#tfc:sweetener", "4x #tfc:empty_jar_with_lid"], fluidInputs: ['#tfg:clean_water 100'], itemOutputs: [`4x tfc:jar/${name}`], itemOutputProvider: TFC.isp.of(`4x tfc:jar/${name}`).copyFood() @@ -477,7 +477,7 @@ function registerTFGFoodRecipes(event) { processorRecipe(`${name}_jam_no_seal`, 200, 8, { circuit: 16, - itemInputs: [`4x tfc:food/${name}`, "#tfg:sugars", "4x tfc:empty_jar"], + itemInputs: [`4x tfc:food/${name}`, "#tfc:sweetener", "4x tfc:empty_jar"], fluidInputs: ['#tfg:clean_water 100'], itemOutputs: [`4x tfc:jar/${name}_unsealed`], itemOutputProvider: TFC.isp.of(`4x tfc:jar/${name}_unsealed`).copyFood() @@ -487,7 +487,7 @@ function registerTFGFoodRecipes(event) { global.FIRMALIFE_JAMS.forEach(name => { processorRecipe(`${name}_jam`, 200, 8, { circuit: 15, - itemInputs: [`4x firmalife:food/${name}`, "#tfg:sugars", "4x #tfc:empty_jar_with_lid"], + itemInputs: [`4x firmalife:food/${name}`, "#tfc:sweetener", "4x #tfc:empty_jar_with_lid"], fluidInputs: ['#tfg:clean_water 100'], itemOutputs: [`4x firmalife:jar/${name}`], itemOutputProvider: TFC.isp.of(`4x firmalife:jar/${name}`).copyFood() @@ -495,7 +495,7 @@ function registerTFGFoodRecipes(event) { processorRecipe(`${name}_jam_no_seal`, 200, 8, { circuit: 16, - itemInputs: [`4x firmalife:food/${name}`, "#tfg:sugars", "4x tfc:empty_jar"], + itemInputs: [`4x firmalife:food/${name}`, "#tfc:sweetener", "4x tfc:empty_jar"], fluidInputs: ['#tfg:clean_water 100'], itemOutputs: [`4x firmalife:jar/${name}_unsealed`], itemOutputProvider: TFC.isp.of(`4x firmalife:jar/${name}_unsealed`).copyFood()