Deadlyapple
Deadlyapple
DIAdiscord.js - Imagine an app
Created by Deadlyapple on 12/6/2024 in #djs-questions
Adding reactions to embed message.
Hello there. I am trying to add reactions to a message my bot sends but for some reason react() doesn't exist for me. I have tried a couple of different ways but everything I try doesn't work. I have a
interaction: CommandInteraction
interaction: CommandInteraction
which is later used like this
await interaction.reply(pingRole);
await interaction.editReply({content: null, embeds: [embed]});
await interaction.reply(pingRole);
await interaction.editReply({content: null, embeds: [embed]});
I tried adding a
interaction.react()
interaction.react()
but it just says it doesn't exist. I also tried with a .then but also does not work. Adding it to the embed directly obviously also doesn't work.
31 replies