style(gui): update structure

This commit is contained in:
aroooo 2022-11-03 11:00:05 +01:00
parent e398da4039
commit 8abd2f8559
2 changed files with 11 additions and 12 deletions

View file

@ -10,12 +10,10 @@ import org.bukkit.entity.Player;
public class AdminPanelGUI {
private final Player player;
private final GUI gui;
private String[] structureIngredients = new String[]{"# # # # # # # # #",
"# % % % % % % % #",
"# % # # B # # % #",
"# % # N A S # % #",
"# % % % % % % % #",
"E # # # # # # # #"};
private String[] structureIngredients = new String[]
{"# # # # # # # # #",
"# % % M C R % % #",
"E # # # # # # # #"};
public AdminPanelGUI(Player player) {
this.gui = new GUIBuilder<>(GUIType.NORMAL)

View file

@ -11,12 +11,13 @@ import org.bukkit.entity.Player;
public class MainGUI {
private final Player player;
private final GUI gui;
private final String[] structureIngredients = new String[]{"# # # # # # # # #",
"# % % % % % % % #",
"# % # # B # # % #",
"# % # N A S # % #",
"# % % % % % % % #",
"E # # # # # # # #"};
private final String[] structureIngredients = new String[]
{"# # # # # # # # #",
"# % % % % % % % #",
"# % # # B # # % #",
"# % # N A S # % #",
"# % % % % % % % #",
"E # # # # # # # #"};
public MainGUI(Player player) {
if (!player.hasPermission("nicko.admin") || !player.isOp()) {