dont disable help on err

merge-requests/12/head
Matthew 2020-05-06 19:33:15 -04:00 committed by Bsian
parent b8ff7aa494
commit 49d3ce608c
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ export default class Help extends Command {
if (cmdPages.length === 1) return message.channel.createMessage({ embed: cmdPages[0] }); if (cmdPages.length === 1) return message.channel.createMessage({ embed: cmdPages[0] });
return createPaginationEmbed(message, cmdPages); return createPaginationEmbed(message, cmdPages);
} catch (err) { } catch (err) {
this.client.util.handleError(err, message, this); this.client.util.handleError(err, message, this, false);
} }
} }
} }