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 { } else {
final int currentAmount = current.getAmount(); final int currentAmount = current.getAmount();
if (current.getAmount() < current.getMaxStackSize()) { if (currentAmount < current.getMaxStackSize()) {
final int newAmount = Math.min(currentAmount + amount, current.getMaxStackSize()); final int newAmount = Math.min(amount, current.getMaxStackSize());
current.setAmount(newAmount); current.setAmount(newAmount);
// Update remaining count of given material // Update remaining count of given material
count.put(key, amount - (newAmount - currentAmount)); count.put(key, amount - newAmount);
} else {
count.put(key, amount - currentAmount);
} }
} }
} else { } else {