#not getting reaction add event
1 messages · Page 1 of 1 (latest)
Check your event handler
Do other events work?
Make sure you spelt the event name correctly
yes
console.log("test");
});```
const intents = new Discord.Intents([
Discord.Intents.FLAGS.GUILDS,
Discord.Intents.FLAGS.GUILD_MESSAGES,
Discord.Intents.FLAGS.GUILD_MEMBERS,
Discord.Intents.FLAGS.GUILD_MESSAGE_REACTIONS,
]);
const client = new Discord.Client({ intents });```
It's message, reaction, user
You need MESSAGE and REACTION partial
Is it not?
Of course it is not, why would you need a message?
It has never been a thing
Completely wrong then 
still not getting triggered
wait
const intents = new Discord.Intents([
Discord.Intents.FLAGS.GUILDS,
Discord.Intents.FLAGS.GUILD_MESSAGES,
Discord.Intents.FLAGS.GUILD_MEMBERS,
Discord.Intents.FLAGS.GUILD_MESSAGE_REACTIONS,
]);
const partials = ["MESSAGE","REACTION"];
const client = new Discord.Client({ intents }, partials );```
like this?
wait
{ intents, partials }

