From a758d1c18ccf71c673748a283e00b08befc4287f Mon Sep 17 00:00:00 2001 From: Mylloon Date: Tue, 8 Jun 2021 22:15:09 +0200 Subject: [PATCH] creationtable reminder in ready() --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 5550251..8bfe4e2 100644 --- a/src/main.py +++ b/src/main.py @@ -19,7 +19,6 @@ client.load_extension("cogs.fun") client.load_extension("cogs.school") client.load_extension("cogs.citation") client.load_extension("cogs.confreriedukassoulait") # you can remove this cogs, only for my private guild -Reminder().creationTable() print("TerminĂ© !") @client.event @@ -29,6 +28,7 @@ async def on_connect(): @client.event async def on_ready(): await client.change_presence(status = discord.Status.online, activity = discord.Activity(name = f"{customPrefix}help", type = discord.ActivityType.playing)) + Reminder().creationTable() print("Bot prĂȘt.") @client.event