Updated to 1.16.2-rc2

This commit is contained in:
Sebastian Hartte
2020-08-11 16:20:31 +02:00
parent c59a6e34eb
commit 68a02ed64b
68 changed files with 278 additions and 205 deletions
@@ -48,13 +48,13 @@ class Size1Slot extends Slot {
}
@Override
public int getMaxStackAmount() {
return this.delegate.getMaxStackAmount();
public int getMaxItemCount() {
return this.delegate.getMaxItemCount();
}
@Override
public int getMaxStackAmount(ItemStack stack) {
return this.delegate.getMaxStackAmount(stack);
public int getMaxItemCount(ItemStack stack) {
return this.delegate.getMaxItemCount(stack);
}
@Override