From 963708e2ac85b3b494f22c47b84271802cdcbf11 Mon Sep 17 00:00:00 2001 From: neoarz Date: Tue, 16 Sep 2025 17:24:37 -0400 Subject: [PATCH] chore: update bot status messages Replaced the list of status messages with new values reflecting different project names. --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 35759ae..5c22332 100644 --- a/bot.py +++ b/bot.py @@ -184,7 +184,7 @@ class DiscordBot(commands.Bot): """ Setup the game status task of the bot. """ - statuses = ["indexing sidestore docs!", "minecraft", "with humans!", "learning rust!"] + statuses = ["Sidestore", "MeloNX", "Armsx2", "Stikdebug", "Feather"] await self.change_presence(activity=discord.Game(random.choice(statuses))) @status_task.before_loop