make feature command less ugly and update feature disabled message

This commit is contained in:
Lee
2024-06-30 07:41:31 +01:00
parent 5ce5ef6898
commit 5b1ddb145f
3 changed files with 25 additions and 9 deletions

View File

@ -224,7 +224,7 @@ public class CommandService extends ListenerAdapter {
FeatureProfile featureProfile = guild.getFeatureProfile();
if (featureProfile.isFeatureDisabled(command.getFeature())) {
event.replyEmbeds(EmbedUtils.errorEmbed()
.setDescription("This command has been disabled by the guild owner")
.setDescription("The feature `%s` is disabled in this guild".formatted(command.getFeature().getName()))
.build()).setEphemeral(true).queue();
return;
}