Skip to content

Commit

Permalink
Fix char issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
lewmilburn committed Sep 24, 2024
1 parent 66d31d5 commit a301a77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/net/lewmc/kryptonite/kos/gui/KOS_ManualGUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ private void addElements() {
}

if (this.plugin.SupportedConfigurations.contains(Kryptonite.ConfigurationOptions.PAPER_WORLD)) {
this.gui.addElement(new StaticGuiElement('w',
this.gui.addElement(new StaticGuiElement('o',
new ItemStack(Material.FILLED_MAP),
1,
click -> {
Expand All @@ -146,7 +146,7 @@ private void addElements() {
ChatColor.AQUA + "Manage the Paper World configuration."
));
} else {
this.gui.addElement(new StaticGuiElement('w',
this.gui.addElement(new StaticGuiElement('o',
new ItemStack(Material.BARRIER),
1,
click -> true,
Expand Down Expand Up @@ -212,7 +212,7 @@ private String[] getElements() {

return new String[]{
" p b s g ",
" w u f ",
" o u f ",
" w x y "
};
}
Expand Down

0 comments on commit a301a77

Please sign in to comment.