From 5d24a580d0ffdf699a2fcb56d55673dbe68010bf Mon Sep 17 00:00:00 2001 From: Minzkraut Date: Tue, 30 Aug 2022 23:39:49 +0200 Subject: [PATCH] Remove GuildMessages gateway intent as it is not required --- index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/index.js b/index.js index 14940e5..c4a25f3 100644 --- a/index.js +++ b/index.js @@ -10,7 +10,6 @@ const logger = new Console({ }); const client = new Client({intents: [ GatewayIntentBits.Guilds, - GatewayIntentBits.GuildMessages, GatewayIntentBits.GuildPresences, GatewayIntentBits.GuildMembers ]});