1
0
Fork 0

Fix type error

refactor/models
Bsian 2020-05-04 00:50:57 +01:00
parent d81d6752ad
commit c7fb133a23
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 2 additions and 2 deletions

View File

@ -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]);
}
}