diff options
| author | 2021-06-08 16:21:20 -0400 | |
|---|---|---|
| committer | 2021-06-08 16:21:20 -0400 | |
| commit | f9d57b423d8baefab9514b67bbe96c98172efe0f (patch) | |
| tree | 342aa185468162b080920c85a817da8b6a76c765 | |
| parent | Make helpdm command more concise (diff) | |
Fix reverted change
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/help_channels/_cog.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/help_channels/_cog.py b/bot/exts/help_channels/_cog.py index 27cf10796..8ceff624b 100644 --- a/bot/exts/help_channels/_cog.py +++ b/bot/exts/help_channels/_cog.py @@ -576,7 +576,7 @@ class HelpChannels(commands.Cog):              embed = discord.Embed(                  title="Currently Helping", -                description=f"You're currently helping in <#{message.channel.id}>", +                description=f"You're currently helping in {message.channel.mention}",                  color=discord.Colour.green(),                  timestamp=message.created_at              )  |