Add ephemeral flag to interaction reply

This commit is contained in:
Christopher Cookman 2024-05-08 07:40:22 -06:00
parent c6964ee0e9
commit a436c74bdd
Signed by: ChrisChrome
GPG key ID: A023A26E42C33A42

View file

@ -465,7 +465,7 @@ discord.on("interactionCreate", async (interaction) => {
description: `\`\`\`${page}\`\`\``, description: `\`\`\`${page}\`\`\``,
color: 0x00ff00 color: 0x00ff00
})); }));
interaction.reply({ embeds }); interaction.reply({ embeds, ephemeral: true });
}); });
}); });
} }