Fix itemstack growth bug for merging
This commit is contained in:
parent
ebdc520ca7
commit
ae911e8b40
@ -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 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user