
Alloy Smelter recipes don't allow oredict inputs with quantity >1
Opened this issue ยท 1 comments
mods.enderio.AlloySmelter.addRecipe(<metallurgy:damascus_steel_ingot>*3, [<ore:ingotBronze>*2, <ore:ingotIron>]);
Will ignore the '*2' and register as: 1 bronze + 1 iron -> 3 damascus steel
However, if I use specific IItemStacks for the input like below then it works fine
mods.enderio.AlloySmelter.addRecipe(<metallurgy:damascus_steel_ingot>*3,[<nuclearcraft:alloy>*2,<minecraft:iron_ingot>]);
I can work around this obviously, but it is a bug