From c7fb133a23323bfd2e19fceb2cc345a74f309c75 Mon Sep 17 00:00:00 2001 From: Bsian Date: Mon, 4 May 2020 00:50:57 +0100 Subject: [PATCH] Fix type error --- src/commands/reload.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]); } }