mirror of
https://github.com/keanuplayz/TravBot-v3.git
synced 2024-08-15 02:33:12 +00:00
14 lines
527 B
JavaScript
14 lines
527 B
JavaScript
const discord = require("discord.js");
|
|
let bot = new discord.Client({
|
|
intents: [
|
|
discord.Intents.FLAGS.GUILDS,
|
|
discord.Intents.FLAGS.GUILD_MEMBERS,
|
|
discord.Intents.FLAGS.GUILD_EMOJIS_AND_STICKERS,
|
|
discord.Intents.FLAGS.GUILD_VOICE_STATES,
|
|
discord.Intents.FLAGS.GUILD_PRESENCES,
|
|
discord.Intents.FLAGS.GUILD_MESSAGES,
|
|
discord.Intents.FLAGS.GUILD_MESSAGE_REACTIONS,
|
|
discord.Intents.FLAGS.DIRECT_MESSAGES
|
|
]
|
|
});
|
|
bot.login(require("./data/config.json").token);
|