Merge pull request #678 from fluffle/0.7.15-mainthatch

Fix maintenance hatch recycling recipes too.
This commit is contained in:
Dmitry 2025-01-11 14:17:50 +07:00 committed by GitHub
commit 8f06680702
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1470,22 +1470,22 @@ const registerGTCEURecipes = (event) => {
// Fix LV recycling producing red/blue steel.
// Replace red steel outputs with 8x steel, delete blue steel outputs.
event.replaceOutput(
/gtceu:arc_furnace\/arc_lv_.*/,
[/gtceu:arc_furnace\/arc_lv_.*/, 'gtceu:arc_furnace/arc_maintenance_hatch'],
'#forge:ingots/red_steel',
'8x #forge:ingots/steel')
event.replaceOutput(
/gtceu:arc_furnace\/arc_lv_.*/,
[/gtceu:arc_furnace\/arc_lv_.*/, 'gtceu:arc_furnace/arc_maintenance_hatch'],
'#forge:ingots/blue_steel',
'')
event.replaceOutput(
/gtceu:macerator\/macerate_lv_.*/,
[/gtceu:macerator\/macerate_lv_.*/, 'gtceu:macerator/macerate_maintenance_hatch'],
'#forge:dusts/red_steel',
'8x #forge:dusts/steel')
event.replaceOutput(
/gtceu:macerator\/macerate_lv_.*/,
[/gtceu:macerator\/macerate_lv_.*/, 'gtceu:macerator/macerate_maintenance_hatch'],
'#forge:dusts/blue_steel',
'')