many changes

This commit is contained in:
Lee
2024-06-29 22:38:53 +01:00
parent b0949d17e6
commit 86c7afac42
11 changed files with 314 additions and 201 deletions

View File

@ -213,11 +213,10 @@ public class CommandService extends ListenerAdapter {
executor.execute(guild, user, ranInsideGuild ? event.getChannel().asTextChannel() : event.getChannel().asPrivateChannel(),
event.getMember(), event.getInteraction());
} catch (Exception ex) {
log.error("An error occurred while executing command \"{}\"", commandName, ex);
event.replyEmbeds(EmbedUtils.successEmbed()
.setDescription("An error occurred while executing the command:\n```java%s```".formatted(ex.getLocalizedMessage()))
event.replyEmbeds(EmbedUtils.errorEmbed()
.setDescription(ex.getLocalizedMessage())
.build())
.setEphemeral(true)
.queue();
}
}