Add ChannelCommand with topic sub commands

This commit is contained in:
2024-06-27 20:41:38 -05:00
parent bd3774fab0
commit 9a1d011ff2
5 changed files with 189 additions and 4 deletions

View File

@ -1,7 +1,10 @@
package cc.fascinated.bat.service;
import cc.fascinated.bat.Consts;
import cc.fascinated.bat.command.*;
import cc.fascinated.bat.command.BatCommand;
import cc.fascinated.bat.command.BatCommandExecutor;
import cc.fascinated.bat.command.BatSubCommand;
import cc.fascinated.bat.command.Category;
import cc.fascinated.bat.common.EmbedUtils;
import cc.fascinated.bat.model.BatGuild;
import cc.fascinated.bat.model.BatUser;
@ -75,10 +78,10 @@ public class CommandService extends ListenerAdapter {
// Unregister all commands that Discord has but we don't
jda.retrieveCommands().complete().forEach(command -> {
CommandInfo commandInfo = commands.get(command.getName()).getCommandInfo();
if (commands.containsKey(command.getName()) && (commandInfo.category().isHidden() || commandInfo.botOwnerOnly())) {
BatCommand batCommand = commands.get(command.getName());
if (batCommand == null) {
jda.deleteCommandById(command.getId()).complete(); // Unregister the command on Discord
log.info("Unregistered hidden command \"{}\" from Discord", command.getName());
log.info("Unregistered unknown command \"{}\" from Discord", command.getName());
return;
}
if (commands.containsKey(command.getName())) {