aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/cogs/alias.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/alias.py b/bot/cogs/alias.py
index 55c7efe65..d7e49b390 100644
--- a/bot/cogs/alias.py
+++ b/bot/cogs/alias.py
@@ -32,7 +32,7 @@ class Alias (Cog):
f'{str(ctx.author)} tried to run the command "{cmd_name}" but lacks permission.'
)
- await ctx.invoke(cmd, *args, **kwargs)
+ await cmd(ctx, *args, **kwargs)
@command(name='aliases')
async def aliases_command(self, ctx: Context) -> None: