From 35057f803edb658c19218605ee33c739fd424c2d Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 19 Mar 2024 23:06:40 -0400 Subject: [PATCH] Fix help --- 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 ffc24272..9e6bd58a 100644 --- a/commands/util-public/help.js +++ b/commands/util-public/help.js @@ -59,7 +59,7 @@ module.exports = class HelpCommand extends Command { .setFooter(`${this.client.registry.commands.size} Commands${allShown ? '' : ` (${cmdCount} Shown)`}`); try { const msgs = []; - for (const embed of embeds) msgs.push(await msg.direct({ 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.')); return msgs; } catch (err) {