From 4e3f12b5dc430b03e18cbd2a803216993e7c12a3 Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Thu, 2 Jun 2022 22:18:36 -0500 Subject: [PATCH] fix: Add message content intent (discord deceived me) --- templates/javascript/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/javascript/index.js b/templates/javascript/index.js index cfa6b4b..1b630bd 100644 --- a/templates/javascript/index.js +++ b/templates/javascript/index.js @@ -6,6 +6,7 @@ const client = new Client({ GatewayIntentBits.Guilds, GatewayIntentBits.GuildMembers, GatewayIntentBits.GuildMessages, + GatewayIntentBits.MessageContent, // Make sure this is enabled for text commands! ], });