Skip to content

Instantly share code, notes, and snippets.

@clkefe
Created January 14, 2022 04:46
Show Gist options
  • Save clkefe/5d69cb404d061d873450d83c07f20d97 to your computer and use it in GitHub Desktop.
Save clkefe/5d69cb404d061d873450d83c07f20d97 to your computer and use it in GitHub Desktop.
Discordjs intents
const client = new Client({
intents: [
Intents.FLAGS.GUILDS,
Intents.FLAGS.GUILD_MESSAGES,
Intents.FLAGS.GUILD_PRESENCES,
Intents.FLAGS.GUILD_MEMBERS,
Intents.FLAGS.GUILD_MESSAGE_REACTIONS,
Intents.FLAGS.GUILD_INVITES,
],
partials: ["MESSAGE", "REACTION"],
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment