Skip to content

Commit

Permalink
Fixed setup menu does not showing up
Browse files Browse the repository at this point in the history
  • Loading branch information
Despical committed Feb 18, 2024
1 parent 008ef26 commit 5efff46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ private void prepareGui() {
this.gui.setOnGlobalClick(e -> e.setCancelled(true));
this.paginatedPane = new PaginatedPane(9, 4);

final var pane = new StaticPane(9, 4);
this.pane = new StaticPane(9, 4);
final ItemBuilder registeredItem = new ItemBuilder(XMaterial.GREEN_STAINED_GLASS_PANE).name("&aArena Validation Successful"), notRegisteredItem = new ItemBuilder(XMaterial.BLACK_STAINED_GLASS_PANE).name("&cArena Validation Not Finished Yet");
pane.fillWith(arena.isReady() ? registeredItem.build() : notRegisteredItem.build());

Expand Down

0 comments on commit 5efff46

Please sign in to comment.