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
1 changed files with 10 additions and 5 deletions

View File

@ -223,7 +223,7 @@ public class AdminGUI extends CommonGUI
ListChallengesGUI.Mode.EDIT,
this.topLabel,
this.permissionPrefix,
this);
this).build();
return true;
};
@ -244,7 +244,7 @@ public class AdminGUI extends CommonGUI
ListLevelsGUI.Mode.EDIT,
this.topLabel,
this.permissionPrefix,
this);
this).build();
return true;
};
@ -266,7 +266,7 @@ public class AdminGUI extends CommonGUI
ListChallengesGUI.Mode.DELETE,
this.topLabel,
this.permissionPrefix,
this);
this).build();
return true;
};
@ -288,7 +288,7 @@ public class AdminGUI extends CommonGUI
ListLevelsGUI.Mode.DELETE,
this.topLabel,
this.permissionPrefix,
this);
this).build();
return true;
};
@ -329,7 +329,12 @@ public class AdminGUI extends CommonGUI
description = Collections.emptyList();
icon = new ItemStack(Material.CRAFTING_TABLE);
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;
};