Fix type error
parent
d81d6752ad
commit
c7fb133a23
|
@ -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]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue