Search in sources :

Example 1 with Shutdown

use of com.github.vaerys.commands.creator.Shutdown in project DiscordSailv2 by Vaerys-Dawn.

the class CommandInit method getCreatorCommands.

public static ArrayList<Command> getCreatorCommands() {
    // Creator Commands
    ArrayList<Command> commands = new ArrayList<>();
    commands.add(new Shutdown());
    commands.add(new Sudo());
    commands.add(new UpdateAvatar());
    commands.add(new GetGlobalStats());
    commands.add(new ResetPlayingStatus());
    commands.add(new ToggleTypingStatus());
    commands.add(new SetPlayingStatus());
    commands.add(new DailyMsg());
    commands.add(new EventSetup());
    commands.add(new WhoIsThis());
    // DM Creator Commands
    commands.add(new BlockUser());
    commands.add(new GetGuildList());
    commands.add(new GetGuildInfoDm());
    commands.add(new Respond());
    commands.add(new ShutdownDM());
    commands.add(new QuickRespond());
    commands.add(new TestDM());
    commands.add(new Echo());
    commands.add(new WhoWasThat());
    commands.add(new PatreonToken());
    commands.add(new UnBlockUser());
    commands.add(new BotStats());
    validate(commands);
    return commands;
}
Also used : ArrayList(java.util.ArrayList) Shutdown(com.github.vaerys.commands.creator.Shutdown) Command(com.github.vaerys.templates.Command)

Aggregations

Shutdown (com.github.vaerys.commands.creator.Shutdown)1 Command (com.github.vaerys.templates.Command)1 ArrayList (java.util.ArrayList)1