forked from Fascinated/Bat
cleanup dev mode
This commit is contained in:
@ -3,6 +3,7 @@ package cc.fascinated.bat.service;
|
||||
import cc.fascinated.bat.Consts;
|
||||
import cc.fascinated.bat.command.*;
|
||||
import cc.fascinated.bat.common.EmbedUtils;
|
||||
import cc.fascinated.bat.config.Config;
|
||||
import cc.fascinated.bat.model.BatGuild;
|
||||
import cc.fascinated.bat.model.BatUser;
|
||||
import lombok.Getter;
|
||||
@ -73,6 +74,19 @@ public class CommandService extends ListenerAdapter {
|
||||
JDA jda = DiscordService.JDA;
|
||||
long before = System.currentTimeMillis();
|
||||
|
||||
Guild adminGuild = jda.getGuildById(Consts.ADMIN_GUILD);
|
||||
if (!Config.isProduction()) {
|
||||
if (adminGuild == null) {
|
||||
log.error("Unable to find the admin guild to register commands");
|
||||
return;
|
||||
}
|
||||
jda.retrieveCommands().complete().forEach(command -> jda.deleteCommandById(command.getId()).complete());
|
||||
adminGuild.updateCommands().addCommands(commands.values().stream()
|
||||
.map(BatCommand::getCommandData).toList()).complete();
|
||||
log.info("Registered {} slash commands in {}ms (DEV MODE)", commands.size(), System.currentTimeMillis() - before);
|
||||
return;
|
||||
}
|
||||
|
||||
// Unregister all commands that Discord has but we don't
|
||||
jda.retrieveCommands().complete().forEach(command -> {
|
||||
if (commands.containsKey(command.getName())
|
||||
@ -102,8 +116,6 @@ public class CommandService extends ListenerAdapter {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Guild adminGuild = jda.getGuildById(Consts.ADMIN_GUILD);
|
||||
if (adminGuild != null) {
|
||||
adminGuild.updateCommands().addCommands(commands.values().stream()
|
||||
.filter(command -> command.getCategory().isHidden() || command.isBotOwnerOnly())
|
||||
|
Reference in New Issue
Block a user