mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 03:25:15 +01:00
[Bleeding] Fixed maxStack being incorrectly set to 0 in custom craft inventories. Fixes BUKKIT-1181
This commit is contained in:
parent
4503167283
commit
c90a7a52e7
@ -27,7 +27,7 @@ public class CraftInventoryCustom extends CraftInventory {
|
||||
|
||||
static class MinecraftInventory implements IInventory {
|
||||
private ItemStack[] items;
|
||||
private int maxStack;
|
||||
private int maxStack = 64;
|
||||
private List<HumanEntity> viewers;
|
||||
private String title;
|
||||
private InventoryType type;
|
||||
|
Loading…
Reference in New Issue
Block a user