diff --git a/src/commands.ts b/src/commands.ts index f3df69a..a9550a8 100644 --- a/src/commands.ts +++ b/src/commands.ts @@ -46,7 +46,7 @@ export const commands: ExecutableCommand[] = [ .setName("Update Embeds") .toJSON(), execute: async (interaction) => { - interaction.deferReply(); + interaction.deferReply({ ephemeral: true }); await updateEmbedsMessage(interaction.targetMessage); interaction.deleteReply(); },