From 0483aed6522631dc01368628a0ec961bcfcdad6f Mon Sep 17 00:00:00 2001 From: gsd Date: Wed, 8 Mar 2023 21:42:44 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BD=D0=B5=20=D0=BD=D1=83=20=D1=83=D0=B6?= =?UTF-8?q?=D0=B5=20=D1=80=D0=B5=D0=BB=D0=B8=D0=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- other_ext/register.py | 1 - other_ext/url_checker.py | 1 - other_ext/webhook_helper.py | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) 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