diff options
| -rw-r--r-- | bot/exts/help_channels.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/exts/help_channels.py b/bot/exts/help_channels.py index 3fbffb218..37bc78b26 100644 --- a/bot/exts/help_channels.py +++ b/bot/exts/help_channels.py @@ -842,10 +842,10 @@ class HelpChannels(commands.Cog):          log.trace(f"Sending available message in {channel_info}.")          embed = discord.Embed( -            title=AVAILABLE_TITLE,              color=constants.Colours.bright_green,              description=AVAILABLE_MSG,          ) +        embed.set_author(name=AVAILABLE_TITLE, icon_url=constants.Icons.green_checkmark)          embed.set_footer(text=AVAILABLE_FOOTER)          msg = await self.get_last_message(channel) | 
