From 653583e39babd21b83501d0beeaf11f314af0d1d Mon Sep 17 00:00:00 2001 From: Pyritie Date: Mon, 19 Jan 2026 23:26:37 +0000 Subject: [PATCH] #2773 Related Work Items: #277 --- .../tfg/ores_and_materials/recipes.quartzes.js | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/kubejs/server_scripts/tfg/ores_and_materials/recipes.quartzes.js b/kubejs/server_scripts/tfg/ores_and_materials/recipes.quartzes.js index 7fe541927..ea00a8aae 100644 --- a/kubejs/server_scripts/tfg/ores_and_materials/recipes.quartzes.js +++ b/kubejs/server_scripts/tfg/ores_and_materials/recipes.quartzes.js @@ -66,7 +66,7 @@ function registerTFGQuartzRecipes(event) { .category(GTRecipeCategories.INGOT_MOLDING) // Empty Jar - event.recipes.gtceu.alloy_smelter('tfc:jar_alloying') + event.recipes.gtceu.alloy_smelter('tfg:jar_alloying') .itemInputs('#tfc:glass_batches_tier_2') .notConsumable('gtceu:ball_casting_mold') .itemOutputs('tfc:empty_jar') @@ -74,26 +74,34 @@ function registerTFGQuartzRecipes(event) { .EUt(2) .category(GTRecipeCategories.INGOT_MOLDING) - event.recipes.gtceu.fluid_solidifier('tfc:jar_solidification') + event.recipes.gtceu.alloy_smelter('tfg:jar_alloying_dust') + .itemInputs('#forge:dusts/glass') + .notConsumable('gtceu:ball_casting_mold') + .itemOutputs('tfc:empty_jar') + .duration(100) + .EUt(2) + .category(GTRecipeCategories.INGOT_MOLDING) + + event.recipes.gtceu.fluid_solidifier('tfg:jar_solidification') .inputFluids(Fluid.of('gtceu:glass', 144)) .notConsumable('gtceu:cylinder_casting_mold') .itemOutputs('tfc:empty_jar') .duration(100) .EUt(2) - event.recipes.gtceu.extractor('tfc:jar_extraction') + event.recipes.gtceu.extractor('tfg:jar_extraction') .itemInputs('#tfc:jars') .outputFluids(Fluid.of('gtceu:glass', 144)) .duration(50) .EUt(2) - event.recipes.gtceu.extractor('tfc:glass_batch_extraction') + event.recipes.gtceu.extractor('tfg:glass_batch_extraction') .itemInputs('#tfc:glass_batches') .outputFluids(Fluid.of('gtceu:glass', 144)) .duration(50) .EUt(2) - event.recipes.gtceu.lathe('tfc:lens') + event.recipes.gtceu.lathe('tfg:tfc_lens') .itemInputs('#forge:glass') .itemOutputs('tfc:lens') .duration(100)