Skip to content
This repository was archived by the owner on Jul 7, 2023. It is now read-only.

Commit f915507

Browse files
committed
Action GUI can now be 6 rows long, surprised no one noticed this bug.
1 parent 89e6dec commit f915507

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/massivecraft/factions/zcore/fperms/gui/PermissableActionGUI.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ public void build() {
4747
}
4848

4949
guiSize = section.getInt("rows", 3);
50-
if (guiSize > 5) {
51-
guiSize = 5;
52-
P.p.log(Level.INFO, "Action GUI size out of bounds, defaulting to 5");
50+
if (guiSize > 6) {
51+
guiSize = 6;
52+
P.p.log(Level.INFO, "Action GUI size out of bounds, defaulting to 6");
5353
}
5454

5555
guiSize *= 9;

0 commit comments

Comments
 (0)