Fix Forge ore dictionary support for the Assembly Table

Fixes https://github.com/BuildCraft/BuildCraft/issues/531 .
Don't worry, I checked it and it has no errors and works as intended :D
This commit is contained in:
viliml 2013-10-09 19:19:39 +02:00
parent 3a39b289a2
commit 11c96949ec

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
}