This commit is contained in:
Lee
2024-06-24 15:45:53 +01:00
parent ac3529ed88
commit b703f51868
6 changed files with 87 additions and 24 deletions

View File

@ -98,13 +98,7 @@ public class CommandService extends ListenerAdapter {
});
// Register all commands
for (BatCommand command : commands.values()) {
if (command.getCommandData() == null) {
continue;
}
jda.upsertCommand(command.getCommandData()).complete(); // Register the command on Discord
}
jda.updateCommands().addCommands(commands.values().stream().map(BatCommand::getCommandData).toList()).complete();
log.info("Registered all slash commands in {}ms", System.currentTimeMillis() - before);
}