From 69a175c0a908160c4ba98a57e1deb240fdc8df05 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Thu, 2 Jul 2020 03:53:03 +0100 Subject: [PATCH] Took away last line in Cog --- cogs/help/verification.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cogs/help/verification.py b/cogs/help/verification.py index f5afea86..a254ada0 100644 --- a/cogs/help/verification.py +++ b/cogs/help/verification.py @@ -15,7 +15,7 @@ class Verification(commands.Cog): @commands.Cog.listener() async def on_message(self, message): # Making sure that the bot doesn't reply to itself - if message.author == self.bot.user: + if message.author == self.bot: return # Defining the message content in a variable @@ -52,8 +52,6 @@ class Verification(commands.Cog): else: await message.delete() - await self.bot.process_commands(message) - # Allowing people to get ping-able self roles @command(name="verification") @is_owner()