diff --git a/src/commands.js b/src/commands.js index f64bd54..d2b0126 100644 --- a/src/commands.js +++ b/src/commands.js @@ -16,7 +16,10 @@ cmds.set('member', { if (typeof reply === 'string') { return await message.reply(reply); } - await message.reply({embeds: [reply.toJSON()]}) + else if (reply instanceof EmbedBuilder) { + await message.reply({embeds: [reply.toJSON()]}) + } + } })