Added base activity

This commit is contained in:
Benjamyn 2026-08-30 17:00:29 +10:00
parent 926fc4b96a
commit 94395e45a9

View File

@ -43,9 +43,12 @@ intents.members = True
intents.messages = True intents.messages = True
intents.voice_states = True intents.voice_states = True
activity = discord.Activity(type=discord.ActivityType.watching, name="!help for commands")
bot = commands.Bot( bot = commands.Bot(
command_prefix="!", command_prefix="!",
intents=intents, intents=intents,
activity=activity
) )
tree: CommandTree = bot.tree tree: CommandTree = bot.tree