Created
January 14, 2022 04:46
-
-
Save clkefe/5d69cb404d061d873450d83c07f20d97 to your computer and use it in GitHub Desktop.
Discordjs intents
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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