cleanup missing permission message and check if the user has permission to give the role when adding a new auto role

This commit is contained in:
Lee
2024-06-27 19:48:15 +01:00
parent f062fa21c3
commit 2c6dcc08cd
3 changed files with 22 additions and 4 deletions

View File

@ -27,7 +27,8 @@ import java.util.*;
* @author Fascinated (fascinated7)
*/
@Service
@Log4j2 @Getter
@Log4j2
@Getter
@DependsOn("discordService")
public class CommandService extends ListenerAdapter {
/**
@ -159,8 +160,13 @@ public class CommandService extends ListenerAdapter {
}
}
if (!missingPermissions.isEmpty()) {
StringBuilder missing = new StringBuilder();
for (Permission permission : missingPermissions) {
missing.append("`").append(permission.getName()).append("`").append(", ");
}
event.replyEmbeds(EmbedUtils.errorEmbed()
.setDescription("You are missing the following permissions to execute this command: " + missingPermissions)
.setDescription("You are missing the following permissions to execute this command:\n" +
missing.substring(0, missing.length() - 2))
.build())
.setEphemeral(true)
.queue();