Skip to content

Commit

Permalink
Merge remote-tracking branch 'chochem/fix-ioobe' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Dream-Master committed Sep 16, 2024
2 parents 192df85 + 2197b8c commit 0c4bb4a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ public static ItemStack[] cleanItemStackArray(ItemStack[] input) {
aCleanedItems.add(checkStack);
}
}
for (int i = 0; i < aArraySize; i++) {
for (int i = 0; i < aCleanedItems.size(); i++) {
ItemStack aMappedStack = aCleanedItems.get(i);
if (aMappedStack != null) {
aOutput[i] = aMappedStack;
Expand Down

0 comments on commit 0c4bb4a

Please sign in to comment.