From 74bdfacee13aef35a8270a3b6b3f4ed2f6b83e3d Mon Sep 17 00:00:00 2001 From: Matthew R Date: Wed, 30 Oct 2019 21:28:07 -0400 Subject: [PATCH] fix constructor --- src/commands/whois.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/whois.ts b/src/commands/whois.ts index dd3a6b9..ed6daff 100644 --- a/src/commands/whois.ts +++ b/src/commands/whois.ts @@ -7,7 +7,7 @@ import { Command, RichEmbed } from '../class'; export default class Whois extends Command { constructor(client: Client) { super(client); - this.name = 'account'; + this.name = 'whois'; this.description = 'Views information for a cloud account.'; this.aliases = ['account', 'user']; this.usage = `${this.client.config.prefix}account [User Name || User ID || Email Address]`;