diff --git a/cogs/help.py b/cogs/help.py index d32c128..61b64fc 100644 --- a/cogs/help.py +++ b/cogs/help.py @@ -260,6 +260,9 @@ class Help(commands.Cog): # @mention and @debug commands @commands.Cog.listener() async def on_message(self, message): + if message.author == self.bot.ownner: + return + if message.content.startswith("@mention"): channel = message.channel if not isinstance(channel, discord.TextChannel):