From 9f8112fd20ded96d02d5b6864e095551a73bd0bd Mon Sep 17 00:00:00 2001 From: Matthew R Date: Wed, 30 Oct 2019 21:32:30 -0400 Subject: [PATCH] Add ack for support --- src/commands/whois.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands/whois.ts b/src/commands/whois.ts index 57dde3f..9494b7b 100644 --- a/src/commands/whois.ts +++ b/src/commands/whois.ts @@ -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);