From 3b362ba01b30137bcbc02f3dccc583e858e560ed Mon Sep 17 00:00:00 2001 From: Skillet Date: Tue, 18 Apr 2023 00:35:39 -0400 Subject: [PATCH] fixes --- autowl/bot.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/autowl/bot.py b/autowl/bot.py index 71ced64..fbaa553 100644 --- a/autowl/bot.py +++ b/autowl/bot.py @@ -50,11 +50,11 @@ class Bot(commands.Bot): f"Have access to the following guilds: " f"{', '.join([str(guild.name) + ' (' + str(guild.id) + ')' for guild in self.guilds])}" ) - - for guild in self.guilds: - self.tree.copy_global_to(guild=guild) - await self.tree.sync(guild=guild) - log.info(f"Synced guild: {guild.name}") + # + # for guild in self.guilds: + # self.tree.copy_global_to(guild=guild) + # await self.tree.sync(guild=guild) + # log.info(f"Synced guild: {guild.name}") await self.tree.sync()