Missed one

This commit is contained in:
Dragon Fire
2024-04-06 18:17:25 -04:00
parent ec6b3e4ed2
commit 75258783cb
+1 -1
View File
@@ -60,7 +60,7 @@ module.exports = class HelpCommand extends Command {
for (const embed of embeds) msgs.push(await msg.direct({ embeds: [embed] })); 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.')); if (msg.channel.type !== 'dm') msgs.push(await msg.say('📬 Sent you a DM with information.'));
return msgs; return msgs;
} catch (err) { } catch {
return msg.reply('Failed to send DM. You probably have DMs disabled.'); return msg.reply('Failed to send DM. You probably have DMs disabled.');
} }
} }