diff --git a/bot.py b/bot.py index 4db977b..89e4d2d 100644 --- a/bot.py +++ b/bot.py @@ -42,6 +42,8 @@ if not discord_token: # Configure bot with intents intents = discord.Intents.default() intents.message_content = True +intents.presences = True # Enable presence intent for status/device/activity detection +intents.members = True # Enable member intent for full member info # Technically no reason to have a prefix set because the bot only uses slash commands. bot = commands.Bot(command_prefix="/", intents=intents)