aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cogs/help.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cogs/help.py b/cogs/help.py
index 12bc73b..dafe6c5 100644
--- a/cogs/help.py
+++ b/cogs/help.py
@@ -23,7 +23,7 @@ class Help(commands.Cog):
_desc="No description."
else:
_desc=f"{cmd.help}"
- _cmd = f"{str(cmd)}"
+ _cmd = " | ".join([str(cmd),*cmd.aliases])
embed.add_field(name=f"{_cmd}", value=f"{_desc}", inline=False)
await ctx.send(embed=embed)