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:
parent
3a39b289a2
commit
11c96949ec
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