diff --git a/src/events/interactionCreate.js b/src/events/interactionCreate.js index 03ca451..af69dfc 100644 --- a/src/events/interactionCreate.js +++ b/src/events/interactionCreate.js @@ -28,10 +28,7 @@ export async function interactionCreate(interaction) { return } - if (interaction.replied) return - - if (typeof reply === 'string') reply = { embeds: [asEmbed(reply, brand)] } - else { + if (typeof reply === 'object') { // @ts-expect-error if (reply.embeds) reply.embeds = applyStyle(reply.embeds, brand) else if (reply.content) {