From 75258783cb473b49256b44cdccb5ca416803387a Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 6 Apr 2024 18:17:25 -0400 Subject: [PATCH] Missed one --- commands/util-public/help.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/util-public/help.js b/commands/util-public/help.js index 367b301c..696c6247 100644 --- a/commands/util-public/help.js +++ b/commands/util-public/help.js @@ -60,7 +60,7 @@ module.exports = class HelpCommand extends Command { for (const embed of embeds) msgs.push(await msg.direct({ embeds: [embed] })); if (msg.channel.type !== 'dm') msgs.push(await msg.say('📬 Sent you a DM with information.')); return msgs; - } catch (err) { + } catch { return msg.reply('Failed to send DM. You probably have DMs disabled.'); } }