I am trying to use this –
JavaScript
x
2
1
new Discord.Client({ws:{intents: [Intents.FLAGS.GUILD_PRESENCES]}});
2
I am experiencing issues. See the attached image. Anyone know what wrong? Thanks!
Advertisement
Answer
You haven’t defined the Intents
it –
JavaScript
1
2
1
new Discord.Client({ws:{intents: [Discord.Intents.FLAGS.GUILD_PRESENCES]}})
2