Skip to content

Commit

Permalink
Fixes #1640
Browse files Browse the repository at this point in the history
  • Loading branch information
NielsPilgaard committed Apr 13, 2020
1 parent 8860fba commit 7a92c12
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions scripts/Mekanism.zs
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,21 @@ for ingot in <ore:ingotGraphite>.items {
# Energized Smelter is not entirely unified, this should fix that
var itemsToUnify as IItemStack[] = [
<ic2:crushed>,
<ic2:crushed:3>,
<ic2:crushed:4>,
<ic2:crushed:5>,
<ic2:purified>,
<ic2:purified:3>,
<ic2:purified:4>,
<ic2:purified:5>
];
for item in itemsToUnify {
mods.mekanism.smelter.removeRecipe(item);
var itemsToUnify as IItemStack[IItemStack] = {
<ic2:crushed> : <thermalfoundation:material:128>,
<ic2:crushed:3> : <thermalfoundation:material:131>,
<ic2:crushed:4> : <thermalfoundation:material:130>,
<ic2:crushed:5> : <thermalfoundation:material:129>,
<ic2:purified> : <thermalfoundation:material:128>,
<ic2:purified:3> : <thermalfoundation:material:131>,
<ic2:purified:4> : <thermalfoundation:material:130>,
<ic2:purified:5> : <thermalfoundation:material:129>
};
for input, output in itemsToUnify {
mods.mekanism.smelter.removeRecipe(input);
mods.mekanism.smelter.addRecipe(input, output);
}
# Starmetal Ingots
Expand Down

0 comments on commit 7a92c12

Please sign in to comment.