From 838b00506727c5bf1047f298b708c93a544e0959 Mon Sep 17 00:00:00 2001 From: Sakimori Date: Mon, 18 Jan 2021 02:36:24 -0500 Subject: [PATCH] added a server counter to the on-ready event --- the_prestige.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/the_prestige.py b/the_prestige.py index 6713002..5fb7ea2 100644 --- a/the_prestige.py +++ b/the_prestige.py @@ -1028,7 +1028,7 @@ def config(): @client.event async def on_ready(): db.initialcheck() - print(f"logged in as {client.user} with token {config()['token']}") + print(f"logged in as {client.user} with token {config()['token']} to {len(client.guilds)} servers") watch_task = asyncio.create_task(game_watcher()) await watch_task