Fix LV recycling recipes to produce basic steel.
This commit is contained in:
parent
ff43daae07
commit
dac64097ea
1 changed files with 22 additions and 0 deletions
|
|
@ -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',
|
||||
'')
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue