geforkt von Mirrors/Paper
Remove the length limit on inventory titles
1.8 no longer has a small limit like previous versions
Dieser Commit ist enthalten in:
Ursprung
75593ab621
Commit
930a59c68c
@ -56,7 +56,6 @@ public class CraftInventoryCustom extends CraftInventory {
|
|||||||
|
|
||||||
public MinecraftInventory(InventoryHolder owner, int size, String title) {
|
public MinecraftInventory(InventoryHolder owner, int size, String title) {
|
||||||
Validate.notNull(title, "Title cannot be null");
|
Validate.notNull(title, "Title cannot be null");
|
||||||
Validate.isTrue(title.length() <= 32, "Title cannot be longer than 32 characters");
|
|
||||||
this.items = new ItemStack[size];
|
this.items = new ItemStack[size];
|
||||||
this.title = title;
|
this.title = title;
|
||||||
this.viewers = new ArrayList<HumanEntity>();
|
this.viewers = new ArrayList<HumanEntity>();
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren