diff --git a/server/events/interactionCreate.ts b/server/events/interactionCreate.ts index d15d07a..c483f8f 100644 --- a/server/events/interactionCreate.ts +++ b/server/events/interactionCreate.ts @@ -8,7 +8,7 @@ export async function execute(interaction: ExtendedInteraction) { //console.dir(interaction, { depth: null }) if (interaction.isCommand()) { logger.info(`Interaction is a command.`, { guildId: interaction.guild?.id }) - await interaction.deferReply() + await interaction.deferReply({ ephemeral: true }) const command = client.commands.get(interaction.commandName) if (!command) return interaction.followUp('Invalid command')