From 8f8829594f9db1be828e9b5d8ca699a82b161af4 Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Fri, 14 May 2021 21:52:29 -0500 Subject: [PATCH] Add privileged intents --- bot/awesomescibo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/awesomescibo.js b/bot/awesomescibo.js index e078dc5..ee5fa0e 100755 --- a/bot/awesomescibo.js +++ b/bot/awesomescibo.js @@ -3,7 +3,7 @@ const Discord = require("discord.js"); const Intents = Discord.Intents; const client = new Discord.Client({ - intents: ["GUILDS", "GUILD_MESSAGES", "GUILD_MESSAGE_REACTIONS", "DIRECT_MESSAGES", "DIRECT_MESSAGE_REACTIONS"], + intents: ["GUILDS", "GUILD_MESSAGES", "GUILD_MESSAGE_REACTIONS", "DIRECT_MESSAGES", "DIRECT_MESSAGE_REACTIONS", "GUILD_MEMBERS", "GUILD_PRESENCES"], partials: ["MESSAGE", "CHANNEL", "REACTION"], }); const fetch = require("node-fetch");