From 94395e45a95d602d2839441d8e534a434d1f8d29 Mon Sep 17 00:00:00 2001 From: Benjamyn Date: Sun, 30 Aug 2026 17:00:29 +1000 Subject: [PATCH] Added base activity --- main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.py b/main.py index 8515980..588a127 100644 --- a/main.py +++ b/main.py @@ -43,9 +43,12 @@ intents.members = True intents.messages = True intents.voice_states = True +activity = discord.Activity(type=discord.ActivityType.watching, name="!help for commands") + bot = commands.Bot( command_prefix="!", intents=intents, + activity=activity ) tree: CommandTree = bot.tree