From 73d0bb6154f373f0fcb4952df7c809d996037902 Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Fri, 14 May 2021 17:31:15 -0500 Subject: [PATCH] Remove intents --- bot/awesomescibo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/awesomescibo.js b/bot/awesomescibo.js index 03f8555..7567c59 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: [Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_MESSAGES], + intents: [], partials: ["MESSAGE", "CHANNEL", "REACTION"], }); const fetch = require("node-fetch");