From b315d471a780d874be14a2bd9cdd6969619bc473 Mon Sep 17 00:00:00 2001 From: Bsian Date: Tue, 9 Jun 2020 22:55:54 +0100 Subject: [PATCH] Fix loading information --- src/commands/whois.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/whois.ts b/src/commands/whois.ts index cf7dc46..9b364c6 100644 --- a/src/commands/whois.ts +++ b/src/commands/whois.ts @@ -35,8 +35,8 @@ export default class Whois extends Command { const embed = new RichEmbed(); embed.setTitle('Account Information'); embed.setThumbnail(thumbnail); - if (full) this.full(account, embed, message.member); - else this.default(account, embed); + if (full) await this.full(account, embed, message.member); + else await this.default(account, embed); let details = ''; let role: Role;