I've been on my discord bot for several days because I encountered a problem ...
I wanted to add the possibility of having a role following a reaction.
But it doesn't work as soon as I add the line to add the role, if I remove it it works fine.
code :
bot.on("messageReactionAdd", (reaction, member) => {
if(reaction.message.id === "894623823855493171"){
member.roles.add('892423129345978438');
reaction.message.channel.send(`Tu as réagi : ✅ ${member}`);
}
})