Fix stack merge count bug

This commit is contained in:
Gabriel Tofvesson 2021-04-24 00:56:44 +02:00
parent 767f698201
commit 22a1da1b8d

View File

@ -196,17 +196,11 @@ public class SortCommandExecutor implements CommandExecutor {
if (amount == 0) {
stacks[i] = new ItemStack(Material.AIR);
} else {
final int currentAmount = current.getAmount();
final int newAmount = Math.min(amount, current.getMaxStackSize());
current.setAmount(newAmount);
if (currentAmount < current.getMaxStackSize()) {
final int newAmount = Math.min(amount, current.getMaxStackSize());
current.setAmount(newAmount);
// Update remaining count of given material
count.put(key, amount - newAmount);
} else {
count.put(key, amount - currentAmount);
}
// Update remaining count of given material
count.put(key, amount - newAmount);
}
} else {
logger.warning("Found untracked ItemStack while merging stacks");