From dcd5e8be5fbc60e004b8b7ff46782fb805e5521d Mon Sep 17 00:00:00 2001 From: Pyritie Date: Tue, 20 Jan 2026 16:12:21 +0000 Subject: [PATCH] fix timing with forming press compared to bender --- .../server_scripts/tfg/ores_and_materials/recipes.materials.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubejs/server_scripts/tfg/ores_and_materials/recipes.materials.js b/kubejs/server_scripts/tfg/ores_and_materials/recipes.materials.js index eaaad9b3a..d90ff63b8 100644 --- a/kubejs/server_scripts/tfg/ores_and_materials/recipes.materials.js +++ b/kubejs/server_scripts/tfg/ores_and_materials/recipes.materials.js @@ -206,7 +206,7 @@ function addMaterialWelding(event, outputItem, inputItem1, inputItem2, material, event.recipes.gtceu.forming_press(`tfg:${id}`) .itemInputs(inputItem1, inputItem2, 'tfc:powder/flux') .itemOutputs(outputItem) - .duration(material.getMass()) + .duration(material.getMass() * 2) .EUt(GTValues.VA[compactingTier]); }