mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-12-28 03:57:39 +01:00
Fixed Panels size that could be higher than 54
This commit is contained in:
parent
db3bf21c4c
commit
d05582fd79
@ -32,9 +32,11 @@ public class Panel implements HeadRequester {
|
|||||||
}
|
}
|
||||||
// Create panel
|
// Create panel
|
||||||
if (size > 0) {
|
if (size > 0) {
|
||||||
// Make sure size is a multiple of 9
|
// Make sure size is a multiple of 9 and is 54 max.
|
||||||
size = size + 8;
|
size = size + 8;
|
||||||
size -= (size % 9);
|
size -= (size % 9);
|
||||||
|
if (size > 54) size = 54;
|
||||||
|
|
||||||
inventory = Bukkit.createInventory(null, size, name);
|
inventory = Bukkit.createInventory(null, size, name);
|
||||||
// Fill the inventory and return
|
// Fill the inventory and return
|
||||||
for (Map.Entry<Integer, PanelItem> en: items.entrySet()) {
|
for (Map.Entry<Integer, PanelItem> en: items.entrySet()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user