Add ack for support

merge-requests/1/merge
Matthew 2019-10-30 21:32:30 -04:00
parent a4e9693292
commit 9f8112fd20
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
1 changed files with 1 additions and 0 deletions

View File

@ -36,6 +36,7 @@ export default class Whois extends Command {
else if (account.permissions.communityManager) details += 'This account belongs to a Community Manager.\n';
else if (account.permissions.supervisor) details += 'This account belongs to a Supervisor.\n';
else if (account.permissions.staff) details += 'This account belongs to a Staff member.\n';
else if (account.permissions.support) details += 'This account belongs to a Support member.\n';
if (account.root) details += 'This account has root/administrative privileges.\n';
if (details) embed.addField('Additional Details', details, true);
embed.setFooter(this.client.user.username, this.client.user.avatarURL);