mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-24 09:16:06 +01:00
SPIGOT-3110: SHULKER_BOX InventoryType
By: md_5 <git@md-5.net>
This commit is contained in:
parent
a082c22d47
commit
023cc5d43f
1 changed files with 4 additions and 0 deletions
|
@ -70,6 +70,10 @@ public enum InventoryType {
|
||||||
* A hopper inventory, with 5 slots of type CONTAINER.
|
* A hopper inventory, with 5 slots of type CONTAINER.
|
||||||
*/
|
*/
|
||||||
HOPPER(5, "Item Hopper"),
|
HOPPER(5, "Item Hopper"),
|
||||||
|
/**
|
||||||
|
* A shulker box inventory, with 27 slots of type CONTAINER.
|
||||||
|
*/
|
||||||
|
SHULKER_BOX(27, "container.shulkerBox"),
|
||||||
;
|
;
|
||||||
|
|
||||||
private final int size;
|
private final int size;
|
||||||
|
|
Loading…
Add table
Reference in a new issue