1
0
Fork 0

Fix no args

refactor/models
Bsian 2019-11-30 23:59:13 +00:00
parent 495159336b
commit af1827337f
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import { Message } from 'eris';
import { Client } from '..';
import { Command } from '../class';
export default class Ping extends Command {
export default class Load extends Command {
constructor(client: Client) {
super(client);
this.name = 'load';
@ -27,6 +27,7 @@ export default class Ping extends Command {
} else {
try {
const Cmd = require(`${corepath}/commands`)[args[1]];
if (!Cmd) return message.channel.createMessage(`${this.client.stores.emojis.error} ***Could not find file***`);
this.client.commands.remove(args[1]);
this.client.loadCommand(Cmd);
} catch (error) {