diff --git a/bot.py b/bot.py index d118177..56391fa 100644 --- a/bot.py +++ b/bot.py @@ -56,6 +56,9 @@ class DiscordClient(commands.Bot): await self.tree.sync(guild=discord.Object(self.main_server_id)) await self.tree.sync() + self.loop.create_task(self.load_extensions["stats_loader"].task()) + self.loop.create_task(self.load_extensions["stats_presence"].task()) + def setup_events(self): @self.event async def on_ready(): diff --git a/other_ext/stats_loader.py b/other_ext/stats_loader.py index 87ec56f..d90a4a4 100644 --- a/other_ext/stats_loader.py +++ b/other_ext/stats_loader.py @@ -6,7 +6,6 @@ class Extension: core = None def __init__(self, core): self.core = core - self.core.loop.create_task(self.task()) async def task(self, timeout = 60): await self.core.wait_until_ready() diff --git a/other_ext/stats_presence.py b/other_ext/stats_presence.py index 6182fd5..64cc8ba 100644 --- a/other_ext/stats_presence.py +++ b/other_ext/stats_presence.py @@ -8,7 +8,6 @@ class Extension: core = None def __init__(self, core): self.core = core - self.core.loop.create_task(self.task()) async def task(self, timeout = 3): await self.core.wait_until_ready()