Fix itemstack growth bug for merging

This commit is contained in:
Gabriel Tofvesson 2021-04-24 00:36:36 +02:00
parent ebdc520ca7
commit ae911e8b40

View File

@ -142,12 +142,14 @@ public class SortCommandExecutor implements CommandExecutor {
} else {
final int currentAmount = current.getAmount();
if (current.getAmount() < current.getMaxStackSize()) {
final int newAmount = Math.min(currentAmount + amount, current.getMaxStackSize());
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 - currentAmount));
count.put(key, amount - newAmount);
} else {
count.put(key, amount - currentAmount);
}
}
} else {