Add EditSettingsGUI to AdminGUI.

Fix issue when other GUIs were not opened.
This commit is contained in:
BONNe1704 2019-01-18 17:40:01 +02:00
parent 6cdc619cf0
commit 0f56eb7185

View File

@ -223,7 +223,7 @@ public class AdminGUI extends CommonGUI
ListChallengesGUI.Mode.EDIT, ListChallengesGUI.Mode.EDIT,
this.topLabel, this.topLabel,
this.permissionPrefix, this.permissionPrefix,
this); this).build();
return true; return true;
}; };
@ -244,7 +244,7 @@ public class AdminGUI extends CommonGUI
ListLevelsGUI.Mode.EDIT, ListLevelsGUI.Mode.EDIT,
this.topLabel, this.topLabel,
this.permissionPrefix, this.permissionPrefix,
this); this).build();
return true; return true;
}; };
@ -266,7 +266,7 @@ public class AdminGUI extends CommonGUI
ListChallengesGUI.Mode.DELETE, ListChallengesGUI.Mode.DELETE,
this.topLabel, this.topLabel,
this.permissionPrefix, this.permissionPrefix,
this); this).build();
return true; return true;
}; };
@ -288,7 +288,7 @@ public class AdminGUI extends CommonGUI
ListLevelsGUI.Mode.DELETE, ListLevelsGUI.Mode.DELETE,
this.topLabel, this.topLabel,
this.permissionPrefix, this.permissionPrefix,
this); this).build();
return true; return true;
}; };
@ -329,7 +329,12 @@ public class AdminGUI extends CommonGUI
description = Collections.emptyList(); description = Collections.emptyList();
icon = new ItemStack(Material.CRAFTING_TABLE); icon = new ItemStack(Material.CRAFTING_TABLE);
clickHandler = (panel, user, clickType, slot) -> { clickHandler = (panel, user, clickType, slot) -> {
// TODO: Create Settings GUI new EditSettingsGUI(this.addon,
this.world,
this.user,
this.topLabel,
this.permissionPrefix,
this).build();
return true; return true;
}; };