set TSSBOT presence to "Soon..." (#1232)

Adds a custom-activity status in on_ready so the bot reads
"Soon..." in the member list until the real feature set lands.

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
NotSoToothless
2026-05-14 00:14:45 -07:00
committed by GitHub
parent e4677b7564
commit 335a7fb8d0
+3
View File
@@ -43,6 +43,9 @@ bot = commands.Bot(command_prefix="!", intents=intents)
async def on_ready():
log.info(f"logged in as {bot.user} (id={bot.user.id if bot.user else '?'})")
log.info(f"connected to {len(bot.guilds)} guild(s)")
await bot.change_presence(
activity=discord.CustomActivity(name="Soon...")
)
if __name__ == "__main__":