cleaned up the red alloy recipes, also fixed #1565

This commit is contained in:
Pyritie 2025-08-09 00:47:58 +01:00
parent b0608183e9
commit 1bea67bb09
2 changed files with 15 additions and 15 deletions

View file

@ -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

View file

@ -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)