From da2edde753b6567ca6210363155b42dace8d8e3e Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Thu, 2 Jun 2022 22:14:04 -0500 Subject: [PATCH] fix: Make message content intent allowed --- templates/typescript/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/typescript/src/index.ts b/templates/typescript/src/index.ts index 12a2ce0..220b133 100644 --- a/templates/typescript/src/index.ts +++ b/templates/typescript/src/index.ts @@ -6,6 +6,7 @@ const client = new Client({ GatewayIntentBits.Guilds, GatewayIntentBits.GuildMembers, GatewayIntentBits.GuildMessages, + GatewayIntentBits.MessageContent //Make sure this is enabled for text commands! ], });