From 6ab23ccdb8914a30d1d4a1c89faae8e098c90f93 Mon Sep 17 00:00:00 2001 From: pancakes-proxy Date: Tue, 3 Jun 2025 04:02:17 +0900 Subject: [PATCH] feat: Enable presence and member intents for enhanced user status and device detection --- bot.py | 2 ++ 1 file changed, 2 insertions(+) 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)