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