maybe fix loading log channels

This commit is contained in:
Lee
2024-07-04 03:40:12 +01:00
parent 3b3ea2b3cc
commit ece36f7f27
6 changed files with 50 additions and 10 deletions

View File

@ -184,6 +184,7 @@ public class CommandService extends ListenerAdapter {
}
}
// Check if the executor is null
if (executor == null) {
event.replyEmbeds(EmbedUtils.errorEmbed()
.setDescription("Unable to find a command executor the command name ):")
@ -214,6 +215,7 @@ public class CommandService extends ListenerAdapter {
}
}
// Check if the command is guild only and if it was not ran inside a guild
if (isSubCommand && commandInfo.guildOnly() && !ranInsideGuild) {
event.replyEmbeds(EmbedUtils.errorEmbed()
.setDescription("This command can only be executed in a guild")
@ -221,6 +223,7 @@ public class CommandService extends ListenerAdapter {
return;
}
// Check if the feature is disabled in the guild
if (guild != null) {
FeatureProfile featureProfile = guild.getFeatureProfile();
if (featureProfile.isFeatureDisabled(command.getFeature())) {
@ -231,10 +234,10 @@ public class CommandService extends ListenerAdapter {
}
}
// Execute the command
executor.execute(guild, user, ranInsideGuild ? event.getChannel().asTextChannel() : event.getChannel().asPrivateChannel(),
event.getMember(), event.getInteraction());
log.info("Executed command \"{}\" for user \"{}\" (took: {}ms)", commandName, user.getDiscordUser().getName(),
System.currentTimeMillis() - before);
log.info("Executed command \"{}\" for user \"{}\" (took: {}ms)", commandName, user.getName(), System.currentTimeMillis() - before);
} catch (Exception ex) {
log.error("An error occurred while executing command \"{}\"", commandName, ex);
event.replyEmbeds(EmbedUtils.genericInteractionError(ex).build()).setEphemeral(true).queue();