3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-15 20:40:07 +01:00

Implement inventory creation by type and title. Fixes BUKKIT-4045

With the current API it is possible to create an inventory with a specific
type, but it is not possible to give such an inventory a title other than
the default.

The commit changes that by adding a method to optionally supply the title
for the given inventory type and holder, creating the functionality to
display any supported inventory type with a 32 character length String.

If the inventory title supplied is larger than 32 characters then an
IllegalArgumentException is thrown stating so.
Dieser Commit ist enthalten in:
eueln 2013-04-11 14:20:41 -05:00 committet von turt2live
Ursprung c3e4767a79
Commit 2bf22a9c49
2 geänderte Dateien mit 13 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -1506,6 +1506,10 @@ public final class CraftServer implements Server {
return new CraftInventoryCustom(owner, type);
}
public Inventory createInventory(InventoryHolder owner, InventoryType type, String title) {
return new CraftInventoryCustom(owner, type, title);
}
public Inventory createInventory(InventoryHolder owner, int size) throws IllegalArgumentException {
Validate.isTrue(size % 9 == 0, "Chests must have a size that is a multiple of 9!");
return new CraftInventoryCustom(owner, size);

Datei anzeigen

@ -18,6 +18,10 @@ public class CraftInventoryCustom extends CraftInventory {
super(new MinecraftInventory(owner, type));
}
public CraftInventoryCustom(InventoryHolder owner, InventoryType type, String title) {
super(new MinecraftInventory(owner, type, title));
}
public CraftInventoryCustom(InventoryHolder owner, int size) {
super(new MinecraftInventory(owner, size));
}
@ -39,6 +43,11 @@ public class CraftInventoryCustom extends CraftInventory {
this.type = type;
}
public MinecraftInventory(InventoryHolder owner, InventoryType type, String title) {
this(owner, type.getDefaultSize(), title);
this.type = type;
}
public MinecraftInventory(InventoryHolder owner, int size) {
this(owner, size, "Chest");
}