diff --git a/commands/util-public/help.js b/commands/util-public/help.js index 86f691d9..ffc24272 100644 --- a/commands/util-public/help.js +++ b/commands/util-public/help.js @@ -62,7 +62,8 @@ module.exports = class HelpCommand extends Command { for (const embed of embeds) msgs.push(await msg.direct({ embed })); if (msg.channel.type !== 'dm') msgs.push(await msg.say('📬 Sent you a DM with information.')); return msgs; - } catch { + } catch (err) { + throw err; // return msg.reply('Failed to send DM. You probably have DMs disabled.'); } }