Added error catcher

merge-requests/1/merge
Bsian 2019-10-19 14:32:10 +01:00
parent 384adae1de
commit e283251e68
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 5 additions and 1 deletions

View File

@ -16,6 +16,7 @@ export default class Help extends Command {
util: Util = new Util(this.client);
public async run(message: Message, args?: string[]) {
try {
const cmd = args.filter((c) => c)[0];
if (!cmd) {
const cmdList: Command[] = [];
@ -61,5 +62,8 @@ export default class Help extends Command {
embed.setDescription(description);
// @ts-ignore
return message.channel.createMessage({ embed });
} catch (error) {
this.util.handleError(error, message, this)
}
}
}