mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-24 19:46:32 +01:00
Reduce page entry count to 15 - resolves #95
This commit is contained in:
parent
d3e60487bb
commit
bfc79c6051
@ -211,7 +211,7 @@ public class Util {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int index = pageNumber - 1;
|
int index = pageNumber - 1;
|
||||||
List<List<Node>> pages = divideList(l, 20);
|
List<List<Node>> pages = divideList(l, 15);
|
||||||
|
|
||||||
if ((index < 0 || index >= pages.size())) {
|
if ((index < 0 || index >= pages.size())) {
|
||||||
pageNumber = 1;
|
pageNumber = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user