From 3bcf375204c22271ad3ed1fc059b598b751aa03f Mon Sep 17 00:00:00 2001 From: Michael H Date: Mon, 25 Jun 2018 08:00:56 -0400 Subject: [PATCH] [V3] Fix duplicate help on ignore (#1862) --- redbot/cogs/mod/mod.py | 1 - 1 file changed, 1 deletion(-) diff --git a/redbot/cogs/mod/mod.py b/redbot/cogs/mod/mod.py index 31d38d7ba..1ce07940d 100644 --- a/redbot/cogs/mod/mod.py +++ b/redbot/cogs/mod/mod.py @@ -1170,7 +1170,6 @@ class Mod: async def ignore(self, ctx: commands.Context): """Adds servers/channels to ignorelist""" if ctx.invoked_subcommand is None: - await ctx.send_help() await ctx.send(await self.count_ignored()) @ignore.command(name="channel")