From 1bea67bb09d769ad9851bf6f2b6ba8c062cdede5 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Sat, 9 Aug 2025 00:47:58 +0100 Subject: [PATCH] cleaned up the red alloy recipes, also fixed #1565 --- CHANGELOG.md | 9 ++++++-- .../gregtech/recipes.tfcmetals.js | 21 +++++++------------ 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b22bd109f..62babb97f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,14 +2,19 @@ ## [Unreleased] ### Changes +- FTBQuests has been changed back to linear mode, hopefully to prevent future cases where the quests get stuck on something. Please send us feedback! (#1568) @TomPlop - Added fanfare effects to the railgun launcher multiblock. (#1557) @Redeix +- Added some chalk stick knapping recipes (#1562) @3ncanis +- The Vitrified Ender Pearl recipe now only accepts normal ender pearls (#1567) @TomPlop ### Bug fixes - Fixed a broken model for the aqueous accumulator. (#1557) @Redeix - Fixed broken recipes for the aqueous accumulator. @Pyritie - Fixed log spam on the moon @Pyritie - Fixed recipe collision with maize flour and cured maize @Pyritie -- Fixed Large Solar Array generating twice as much energy as expected with the "active" configuration @TomPlop -- Fixed Electric Greenhouse log recipes so they're back to only needing half an amp of LV @TomPlop +- Fixed Large Solar Array generating twice as much energy as expected with the "active" configuration (#1563) @TomPlop +- Fixed Electric Greenhouse log recipes so they're back to only needing half an amp of LV (#1564) @TomPlop +- Fixed missing quern recipes for softwood/hardwood pulp (#1561) @Pyritie +- Fixed duplicate red alloy mixing recipe (#1565) @Pyritie ## [0.10.7] - 07-08-2025 - Fixed an issue with mod dependencies diff --git a/kubejs/server_scripts/gregtech/recipes.tfcmetals.js b/kubejs/server_scripts/gregtech/recipes.tfcmetals.js index 18f93b1c2..18afc77a1 100644 --- a/kubejs/server_scripts/gregtech/recipes.tfcmetals.js +++ b/kubejs/server_scripts/gregtech/recipes.tfcmetals.js @@ -62,8 +62,7 @@ function registerGTCEuTFCMetalsRecipes(event) { // red alloy, because crucible always makes 4+1=5 - event.remove({ id: 'gtceu:alloy_blast_smelter/red_alloy' }) - event.recipes.gtceu.alloy_blast_smelter('tfg:red_alloy_mixer') + event.recipes.gtceu.alloy_blast_smelter('red_alloy') .itemInputs('1x gtceu:copper_dust', '4x minecraft:redstone') .outputFluids(Fluid.of('gtceu:red_alloy', 720)) .circuit(5) @@ -71,43 +70,39 @@ function registerGTCEuTFCMetalsRecipes(event) { .EUt(GTValues.VA[GTValues.LV]) event.remove({ id: 'gtceu:mixer/red_alloy' }) - event.recipes.gtceu.mixer('tfg:red_alloy_mixer') + // incorrect on purpose to prevent a greate duplicate recipe (the id becomes mixer/mixer/red_alloy) + event.recipes.gtceu.mixer('gtceu:mixer/red_alloy') .itemInputs('1x gtceu:copper_dust', '4x minecraft:redstone') .itemOutputs('5x gtceu:red_alloy_dust') .circuit(2) .duration(100) .EUt(7) - event.remove({ id: 'gtceu:centrifuge/red_alloy_separation' }) - event.recipes.gtceu.centrifuge('tfg:red_alloy_separation') + event.recipes.gtceu.centrifuge('red_alloy_separation') .itemInputs('5x gtceu:red_alloy_dust') .itemOutputs('1x gtceu:copper_dust', '4x minecraft:redstone') .duration(900) .EUt(30) - event.remove({ id: 'gtceu:alloy_smelter/copper_dust_and_redstone_dust_into_red_alloy' }) - event.recipes.gtceu.alloy_smelter('tfg:copper_dust_and_redstone_dust_into_red_alloy') + event.recipes.gtceu.alloy_smelter('copper_dust_and_redstone_dust_into_red_alloy') .itemInputs('1x gtceu:copper_dust', '4x minecraft:redstone') .itemOutputs('5x gtceu:red_alloy_ingot') .duration(50) .EUt(16) - event.remove({ id: 'gtceu:alloy_smelter/annealed_copper_dust_and_redstone_dust_into_red_alloy' }) - event.recipes.gtceu.alloy_smelter('tfg:annealed_copper_dust_and_redstone_dust_into_red_alloy') + event.recipes.gtceu.alloy_smelter('annealed_copper_dust_and_redstone_dust_into_red_alloy') .itemInputs('1x gtceu:annealed_copper_dust', '4x minecraft:redstone') .itemOutputs('5x gtceu:red_alloy_ingot') .duration(50) .EUt(16) - event.remove({ id: 'gtceu:alloy_smelter/copper_ingot_and_redstone_dust_into_red_alloy' }) - event.recipes.gtceu.alloy_smelter('tfg:copper_ingot_and_redstone_dust_into_red_alloy') + event.recipes.gtceu.alloy_smelter('copper_ingot_and_redstone_dust_into_red_alloy') .itemInputs('1x minecraft:copper_ingot', '4x minecraft:redstone') .itemOutputs('5x gtceu:red_alloy_ingot') .duration(50) .EUt(16) - event.remove({ id: 'gtceu:alloy_smelter/annealed_copper_ingot_and_redstone_dust_into_red_alloy' }) - event.recipes.gtceu.alloy_smelter('tfg:annealed_copper_ingot_and_redstone_dust_into_red_alloy') + event.recipes.gtceu.alloy_smelter('annealed_copper_ingot_and_redstone_dust_into_red_alloy') .itemInputs('1x gtceu:annealed_copper_ingot', '4x minecraft:redstone') .itemOutputs('5x gtceu:red_alloy_ingot') .duration(50)