use of com.github.vaerys.commands.setup.SetupQuit in project DiscordSailv2 by Vaerys-Dawn.
the class CommandInit method getSetupCommands.
public static ArrayList<Command> getSetupCommands() {
ArrayList<Command> commands = new ArrayList<>();
// step 1
commands.add(new Module());
commands.add(new HelpModules());
// step 2
commands.add(new Toggle());
commands.add(new HelpSettings());
// Setup Traversal Commands
commands.add(new SetupBack());
commands.add(new SetupNext());
commands.add(new SetupQuit());
commands.add(new SetupRepeat());
validate(commands);
return commands;
}
Aggregations