Remove the length limit on inventory titles

1.8 no longer has a small limit like previous versions

By: Thinkofdeath <thinkofdeath@spigotmc.org>
This commit is contained in:
CraftBukkit/Spigot 2016-01-29 10:29:12 +00:00
parent 99fbeecd40
commit 9dd1f7fef4

View file

@ -56,7 +56,6 @@ public class CraftInventoryCustom extends CraftInventory {
public MinecraftInventory(InventoryHolder owner, int size, String title) {
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.title = title;
this.viewers = new ArrayList<HumanEntity>();