mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-20 07:34:48 +01:00
SPIGOT-7301: Prevent creating non-openable inventories
By: montlikadani <montlikada@gmail.com>
This commit is contained in:
parent
b1268227d9
commit
7b21a096ad
1 changed files with 2 additions and 2 deletions
|
@ -133,11 +133,11 @@ public enum InventoryType {
|
||||||
/**
|
/**
|
||||||
* Pseudo composter inventory with 0 or 1 slots of undefined type.
|
* Pseudo composter inventory with 0 or 1 slots of undefined type.
|
||||||
*/
|
*/
|
||||||
COMPOSTER(1, "Composter"),
|
COMPOSTER(1, "Composter", false),
|
||||||
/**
|
/**
|
||||||
* Pseudo chiseled bookshelf inventory, with 6 slots of undefined type.
|
* Pseudo chiseled bookshelf inventory, with 6 slots of undefined type.
|
||||||
*/
|
*/
|
||||||
CHISELED_BOOKSHELF(6, "Chiseled Bookshelf"),
|
CHISELED_BOOKSHELF(6, "Chiseled Bookshelf", false),
|
||||||
/**
|
/**
|
||||||
* The new smithing inventory, with 3 CRAFTING slots and 1 RESULT slot.
|
* The new smithing inventory, with 3 CRAFTING slots and 1 RESULT slot.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue