Merge pull request #1265 from viliml/patch-5
Fix Forge ore dictionary support for the Assembly Table
This commit is contained in:
commit
782cff2266
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue