mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 19:15:32 +01:00
Validate title for custom inventories. Fixes BUKKIT-4616, BUKKIT-4663
Custom inventories currently do not validate the titles provided. Null values cause NPEs when writing packets. Values longer than 32 characters disconnect clients. This change throws and IllegalArgumentException for null titles or titles longer than 32 characters.
This commit is contained in:
parent
5e8dd7d57d
commit
066fcfe79f
@ -3,6 +3,7 @@ package org.bukkit.craftbukkit.inventory;
|
|||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.apache.commons.lang.Validate;
|
||||||
import org.bukkit.craftbukkit.entity.CraftHumanEntity;
|
import org.bukkit.craftbukkit.entity.CraftHumanEntity;
|
||||||
import org.bukkit.entity.HumanEntity;
|
import org.bukkit.entity.HumanEntity;
|
||||||
import org.bukkit.event.inventory.InventoryType;
|
import org.bukkit.event.inventory.InventoryType;
|
||||||
@ -43,6 +44,8 @@ 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.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>();
|
||||||
|
Loading…
Reference in New Issue
Block a user