From fd2f83765f2aac04827fa7a268af8dbdbbb811d0 Mon Sep 17 00:00:00 2001 From: CelloSerenity <195480169+CelloSerenity@users.noreply.github.com> Date: Wed, 24 Sep 2025 17:26:03 -0600 Subject: [PATCH] Correct status names for consistency --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 74d55dc..fdeb9bb 100644 --- a/bot.py +++ b/bot.py @@ -179,7 +179,7 @@ class DiscordBot(commands.Bot): """ Setup the game status task of the bot. """ - statuses = ["Sidestore", "MeloNX", "Armsx2", "Stikdebug", "Feather"] + statuses = ["SideStore", "MeloNX", "ARMSX2", "StikDebug", "Feather"] await self.change_presence(activity=discord.Game(random.choice(statuses))) @status_task.before_loop