discord message reactions

when i try to get the event from the messages with Events.MessageReactionAdd its not even reacting and printing out a simple console output

i already have all intents i guess i need as you can see here
const client = new Client({
    intents: [
        GatewayIntentBits.GuildMessages,
        GatewayIntentBits.Guilds,
        GatewayIntentBits.MessageContent,
        GatewayIntentBits.GuildPresences,
        GatewayIntentBits.GuildMembers,
        GatewayIntentBits.GuildMessageReactions,
    ]
});

// the simple version for a simple output
client.on(Events.MessageReactionAdd, (reaction, user) => {
    console.log("someone reacted to something");
});
Was this page helpful?