diff --git a/other_ext/register.py b/other_ext/register.py index addf38f..73b8d9c 100644 --- a/other_ext/register.py +++ b/other_ext/register.py @@ -82,7 +82,6 @@ class Extension: @core.listen() async def on_message(message: discord.Message): - print(message.guild.id != core.main_server_id, message.channel.id != self.auth_channel) if message.guild.id != core.main_server_id: return diff --git a/other_ext/url_checker.py b/other_ext/url_checker.py index a910787..3c40b82 100644 --- a/other_ext/url_checker.py +++ b/other_ext/url_checker.py @@ -19,7 +19,6 @@ class Extension: await self.__call__(after) async def __call__(self, message:discord.Message): - print(message.guild.id != self.core.main_server_id, message.author == self.core.user) if not message.guild: return diff --git a/other_ext/webhook_helper.py b/other_ext/webhook_helper.py index 493c7ca..5a5df44 100644 --- a/other_ext/webhook_helper.py +++ b/other_ext/webhook_helper.py @@ -38,7 +38,7 @@ class Extension: for emoji in list(self.webhook_reaction_translate.keys()): try: - message.add_reaction(emoji=emoji) + message.add_reaction(emoji) except Exception as err: print(f"Cannot add reaction on webhook, error: {err}") return