From 74d3ab793359048f65fdfc0cdd027a14e9b37893 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 19 Mar 2024 23:04:25 -0400 Subject: [PATCH] Why --- commands/util-public/help.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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.'); } }