Skip to content

Commit

Permalink
Merge pull request #668 from fluffle/0.7.14-lv-recycling
Browse files Browse the repository at this point in the history
Fix LV recycling recipes to produce basic steel.
  • Loading branch information
Exzept1on authored Jan 6, 2025
2 parents ffb660c + dac6409 commit adeddb5
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions kubejs/server_scripts/gregtech/recipes.js
Original file line number Diff line number Diff line change
Expand Up @@ -1457,4 +1457,26 @@ const registerGTCEURecipes = (event) => {
});

//#endregion

// 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_.*/,
'#forge:ingots/red_steel',
'8x #forge:ingots/steel')

event.replaceOutput(
/gtceu:arc_furnace\/arc_lv_.*/,
'#forge:ingots/blue_steel',
'')

event.replaceOutput(
/gtceu:macerator\/macerate_lv_.*/,
'#forge:dusts/red_steel',
'8x #forge:dusts/steel')

event.replaceOutput(
/gtceu:macerator\/macerate_lv_.*/,
'#forge:dusts/blue_steel',
'')
}

0 comments on commit adeddb5

Please sign in to comment.