From 217afeab71a8c859b1edaf24d009d1ab38b9e9d5 Mon Sep 17 00:00:00 2001 From: jake Date: Wed, 4 Jun 2025 16:12:48 -0400 Subject: [PATCH] trying new permissions --- bolt.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bolt.go b/bolt.go index d01d268..c714f91 100644 --- a/bolt.go +++ b/bolt.go @@ -13,7 +13,12 @@ import ( const ( TOKEN_ENV_VAR = "DISCORD_TOKEN" //label for token environment variable - BOT_INTENTS = dg.IntentGuildMembers | //discord permissions for the bot + // BOT_INTENTS = dg.IntentGuildMembers | //discord permissions for the bot + // dg.IntentGuildPresences | + // dg.IntentMessageContent + + BOT_INTENTS = dg.IntentsAllWithoutPrivileged | + dg.IntentGuildMembers | dg.IntentGuildPresences | dg.IntentMessageContent )