We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c695714 commit 2793dbbCopy full SHA for 2793dbb
src/main/java/de/littleprogrammer/guiapi/guis/PagedGui.java
@@ -46,7 +46,7 @@ public void open(Player player) {
46
centerLocation = new Location(player.getWorld(), 0, 0, 0);
47
48
for (int i = 0; i < 3; i++) {
49
- if (contents.size() >= i) {
+ if (contents.size() > i) {
50
Text text = new Text(contents.get(i + page), i + 1).setSize(contentSize);
51
text.setGui(this);
52
texts.add(text);
0 commit comments