#not getting reaction add event

1 messages · Page 1 of 1 (latest)

brave reef
#

Hey,
I have an reaction add event and its not getting triggered (I have GUILD_MESSAGE_REACTIONS intents)

cursive seal
#

Check your event handler

#

Do other events work?

#

Make sure you spelt the event name correctly

brave reef
#
    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 });```
cursive seal
#

It's message, reaction, user

twilit aspen
#

You need MESSAGE and REACTION partial

cursive seal
#

Is it not?

twilit aspen
#

Of course it is not, why would you need a message?

cursive seal
#

I was looking at a event cheatsheet think

#

Outdated maybe shrug

twilit aspen
#

It has never been a thing

cursive seal
#

Completely wrong then ayb_blobSad

brave reef
#

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

twilit aspen
#

{ intents, partials }

brave reef
#

yea just sew it

#

now its working