From 78b3d002d8c1de4f446a9a73e2331f5e6e866e18 Mon Sep 17 00:00:00 2001 From: Marc Di Luzio Date: Sun, 11 Aug 2024 19:04:11 +0100 Subject: [PATCH] Update the bot activity to the join message --- py/matchy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/matchy.py b/py/matchy.py index 62bdaaa..f3e970d 100755 --- a/py/matchy.py +++ b/py/matchy.py @@ -36,7 +36,7 @@ async def setup_hook(): async def on_ready(): """Bot is ready and connected""" logger.info("Bot is up and ready!") - activity = discord.Game("/match") + activity = discord.Game("/join") await bot.change_presence(status=discord.Status.online, activity=activity)