From 335a7fb8d0eb6606317611f3a4a989710b3c1bcf Mon Sep 17 00:00:00 2001 From: NotSoToothless <67082114+FURRO404@users.noreply.github.com> Date: Thu, 14 May 2026 00:14:45 -0700 Subject: [PATCH] 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) --- start_bot.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/start_bot.py b/start_bot.py index ef68bcd..20848c4 100644 --- a/start_bot.py +++ b/start_bot.py @@ -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__":