From df637c832d2d621a6dfa8a52bbd4fed32a86ef30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 13 Apr 2020 13:10:41 +0200 Subject: [PATCH] Fixes #1640 --- scripts/Mekanism.zs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/scripts/Mekanism.zs b/scripts/Mekanism.zs index be50ac44b..b077e3a05 100644 --- a/scripts/Mekanism.zs +++ b/scripts/Mekanism.zs @@ -7,6 +7,22 @@ print("--- loading Mekanism.zs ---"); mods.mekanism.combiner.removeAllRecipes(); recipes.remove(); +# Energized Smelter is not entirely unified, this should fix that +var itemsToUnify as IItemStack[] = [ + , + , + , + , + , + , + , + +]; + +for item in itemsToUnify { + mods.mekanism.smelter.removeRecipe(item); +} + # Starmetal Ingots mods.mekanism.smelter.addRecipe(, );