diff --git a/src/commands/reload.ts b/src/commands/reload.ts index 4bdc024..84a4ba4 100644 --- a/src/commands/reload.ts +++ b/src/commands/reload.ts @@ -13,7 +13,7 @@ export default class Reload extends Command { this.enabled = true; } - public run(message: Message, args: string[]): void { - if (!args.length) return this.client.commands.get('help').run(message, [this.name]); + public run(message: Message, args: string[]) { + if (!args.length) return this.client.commands.get('help').run(message, [this.name]); } }