use generic embed for interaction errors

This commit is contained in:
Lee
2024-07-04 03:15:53 +01:00
parent 750b8cbfea
commit 49beb864d2
3 changed files with 19 additions and 21 deletions

View File

@ -237,11 +237,7 @@ public class CommandService extends ListenerAdapter {
System.currentTimeMillis() - before);
} catch (Exception ex) {
log.error("An error occurred while executing command \"{}\"", commandName, ex);
event.replyEmbeds(EmbedUtils.errorEmbed()
.setDescription(ex.getLocalizedMessage())
.build())
.setEphemeral(true)
.queue();
event.replyEmbeds(EmbedUtils.genericInteractionError(ex).build()).setEphemeral(true).queue();
}
}
}