trying new permissions

This commit is contained in:
jake 2025-06-04 16:12:48 -04:00
parent a9fb893624
commit 217afeab71

View File

@ -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
)