Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files Browse the repository at this point in the history
NielsPilgaard committed Apr 13, 2020
1 parent fd9ae6a commit df637c8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions scripts/Mekanism.zs
Original file line number Diff line number Diff line change
@@ -7,6 +7,22 @@ print("--- loading Mekanism.zs ---");
mods.mekanism.combiner.removeAllRecipes();
recipes.remove(<mekanism:machineblock:2>);
# 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);
}
# Starmetal Ingots
mods.mekanism.smelter.addRecipe(<astralsorcery:itemcraftingcomponent:2>, <astralsorcery:itemcraftingcomponent:1>);

0 comments on commit df637c8

Please sign in to comment.