Set empty stacks to null in merge

This commit is contained in:
Gabriel Tofvesson 2021-04-24 00:57:02 +02:00
parent 22a1da1b8d
commit a28f82dbc0

View File

@ -194,7 +194,7 @@ public class SortCommandExecutor implements CommandExecutor {
final int amount = count.get(tracked.get());
if (amount == 0) {
stacks[i] = new ItemStack(Material.AIR);
stacks[i] = null;
} else {
final int newAmount = Math.min(amount, current.getMaxStackSize());
current.setAmount(newAmount);