Fixed oredict mode in autocrafting not working at all. Fixes #2060

This commit is contained in:
raoulvdberge
2018-11-18 17:37:48 +01:00
parent 9afcd9e392
commit a45f5d6c08
2 changed files with 3 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ public class CraftingPattern implements ICraftingPattern {
ores.add(input.copy());
for (int id : OreDictionary.getOreIDs(stack)) {
for (int id : OreDictionary.getOreIDs(input)) {
String name = OreDictionary.getOreName(id);
for (ItemStack ore : OreDictionary.getOres(name)) {