fix lists only using the first stack per line
This commit is contained in:
parent
b8675dc414
commit
1ef57453be
1 changed files with 1 additions and 1 deletions
|
@ -200,7 +200,7 @@ public class ItemList extends ItemBuildCraft implements IList {
|
|||
return oreMatch(stacks[0], item);
|
||||
} else {
|
||||
for (ItemStack stack : stacks) {
|
||||
if (stack != null && StackHelper.isMatchingItem(stacks[0], item, true, false)) {
|
||||
if (stack != null && StackHelper.isMatchingItem(stack, item, true, false)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue