Skip to content

Instantly share code, notes, and snippets.

@nopeless
Created September 26, 2021 02:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nopeless/e76a82de987469107df0b08a01d09756 to your computer and use it in GitHub Desktop.
Save nopeless/e76a82de987469107df0b08a01d09756 to your computer and use it in GitHub Desktop.
Discord Intents ALL
const { Intents } = require("discord.js");
Intents.ALL = Object.values(Intents.FLAGS).reduce((acc, p) => acc | p, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment