Skip to content

Commit

Permalink
Format for cog help comamnd now shows current server's prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonah Pierce committed Mar 10, 2020
1 parent 77d656a commit 1e51e0d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cogs/help_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ async def send_bot_help(self, mapping):
cogs[cog.qualified_name]["emoji"],
cogs[cog.qualified_name]["name"]
),
value = "`o.help {}`".format(
value = "`{}help {}`".format(
await database.guilds.get_prefix(self.context.guild),
cog.qualified_name
)
)
Expand Down

0 comments on commit 1e51e0d

Please sign in to comment.