diff --git a/redbot/cogs/customcom/customcom.py b/redbot/cogs/customcom/customcom.py index 66de7ac24..09b8ef26a 100644 --- a/redbot/cogs/customcom/customcom.py +++ b/redbot/cogs/customcom/customcom.py @@ -466,7 +466,7 @@ class CustomCommands(commands.Cog): return # wrap the command here so it won't register with the bot - fake_cc = commands.Command(ctx.invoked_with, self.cc_callback) + fake_cc = commands.command(name=ctx.invoked_with)(self.cc_callback) fake_cc.params = self.prepare_args(raw_response) ctx.command = fake_cc