From 7271fd0314f4419fae281f1ae25b728c53a4a01e Mon Sep 17 00:00:00 2001 From: SpeeeDCraft <52341158+SpeeeDCraft@users.noreply.github.com> Date: Thu, 26 Oct 2023 23:00:46 +0700 Subject: [PATCH] Update recipes.js --- kubejs/server_scripts/gregtech/recipes.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/kubejs/server_scripts/gregtech/recipes.js b/kubejs/server_scripts/gregtech/recipes.js index c356ad5aa..f9726f764 100644 --- a/kubejs/server_scripts/gregtech/recipes.js +++ b/kubejs/server_scripts/gregtech/recipes.js @@ -165,12 +165,9 @@ const generateRecipesForOres = (event, stoneTypeName, material) => { const smeltRecipeName = `tfg:smelting/smelt_${stoneTypeName}_${material}_ore_to_ingot_1` const blastingRecipeName = `tfg:blasting/smelt_${stoneTypeName}_${material}_ore_to_ingot_1` - const inputEntry = `1x gtceu:${tagPrefixWithMaterial}` + const inputEntry = `1x gtceu:tfc_${stoneTypeName}_${material}_ore` - const copiedIngotStack = ingotStack.copy() - copiedIngotStack.setCount(copiedIngotStack.getCount() * 2) - - event.smelting(copiedIngotStack, inputEntry).id(smeltRecipeName).xp(xp) - event.blasting(copiedIngotStack, inputEntry).id(blastingRecipeName).xp(xp) + event.smelting(ingotStack, inputEntry).id(smeltRecipeName).xp(xp) + event.blasting(ingotStack, inputEntry).id(blastingRecipeName).xp(xp) } } \ No newline at end of file