Skip to content

Commit 54a591b

Browse files
JannesT3011Pingsy
authored andcommitted
Fixing help command
1 parent f2e56e6 commit 54a591b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

cogs/help.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ def __init__(self, bot):
88

99
@commands.command(name="help")
1010
async def _help(self, ctx):
11-
cat = ["`message`", "`reaction`", "`bot-requests`", "``userjoins", "`userlaves`", "`mentions`", "`bot-msg`"]
11+
cat = ["`message`", "`reaction`", "`bot-requests`", "`userjoins`", "`userlaves`", "`mentions`", "`bot-msg`"]
1212
embed = Embed(title=f"{self.bot.user.name} ~ Help")
1313
embed.add_field(name="`stats`", value="Shows general stats", inline=False),
14-
embed.add_field(name="`analyze`", value="Analyze a specific category:\n"f" \n".join(cat))
14+
embed.add_field(name="`analyze`", value="Analyze a specific category", inline=False)
15+
embed.add_field(name="`analyze` ~ categories", value="\n".join(cat))
1516

1617
return await ctx.send(embed=embed)
1718

0 commit comments

Comments
 (0)