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