From b3f1308fdfe54752660342ec7539a1a275bee4b0 Mon Sep 17 00:00:00 2001 From: jurjen909 Date: Fri, 9 Jan 2026 21:49:29 +0100 Subject: [PATCH] Inconsistency fix at recipes.coal.js (#2688) * Inconsistency fix at recipes.coal.js Removed duplicate gtceu:raw_coal recipe with an odd time of 1710 ticks. Changed recipe duration to reflect how many Coke is being made (ie 4x coke = 4x the base of 900 ticks, 45 seconds) Changed tfc:poor_raw_coal recipe input to 1x tfc:poor_raw_coal instead of 2x tfc:poor_raw_coal to reflect the amount of Coal a piece or Poor Raw gives in a furnace. * Update recipes.coal.js Reverted recipe duration changes back to 900 ticks for the raw coal items in the Coke oven. Removed redundant "1x" input in poor_raw_coal recipe. Signed-off-by: jurjen909 --------- Signed-off-by: jurjen909 --- kubejs/server_scripts/tfg/powergen/recipes.coal.js | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/kubejs/server_scripts/tfg/powergen/recipes.coal.js b/kubejs/server_scripts/tfg/powergen/recipes.coal.js index 6220f542f..6c9227430 100644 --- a/kubejs/server_scripts/tfg/powergen/recipes.coal.js +++ b/kubejs/server_scripts/tfg/powergen/recipes.coal.js @@ -3,7 +3,7 @@ function registerTFGCoalRecipes(event) { event.recipes.gtceu.coke_oven("tfg:poor_coal_to_coke") - .itemInputs('2x gtceu:poor_raw_coal') + .itemInputs('gtceu:poor_raw_coal') .itemOutputs('1x gtceu:coke_gem') .outputFluids(Fluid.of('gtceu:creosote', 500)) .duration(900) @@ -54,12 +54,6 @@ function registerTFGCoalRecipes(event) { .EUt(96) .circuit(2) - event.recipes.gtceu.coke_oven("tfg:raw_coal_to_coke") - .itemInputs('gtceu:raw_coal') - .itemOutputs('2x gtceu:coke_gem') - .outputFluids(Fluid.of('gtceu:creosote', 2000)) - .duration(1710) - event.recipes.gtceu.pyrolyse_oven("tfg:raw_coal_to_tar") .itemInputs('6x gtceu:raw_coal') .chancedOutput('gtceu:dark_ash_dust', 5000, 0) @@ -93,4 +87,4 @@ function registerTFGCoalRecipes(event) { .duration(288) .EUt(96) .circuit(2) -} \ No newline at end of file +}