Merge pull request #1265 from viliml/patch-5

Fix Forge ore dictionary support for the Assembly Table
This commit is contained in:
CovertJaguar 2013-10-09 15:58:18 -07:00
commit 782cff2266

View file

@ -32,7 +32,7 @@ public class AssemblyRecipe {
continue;
}
if (item.isItemEqual(in)) {
if (StackHelper.instance().isCraftingEquivalent(in, item, true)) {
found += item.stackSize; // Adds quantity of stack to amount
// found
}