diff options
author | Parker <contact@pkrm.dev> | 2024-07-11 01:15:43 -0500 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-07-11 01:15:43 -0500 |
commit | 2c04dc4a7399cc190e7305ad5d659d4a13309943 (patch) | |
tree | 16e7e683736862370dbb41f6f7302b5ac64b9714 | |
parent | ee0ae32f56ebbe4f007066219c298fbc7b1250cb (diff) |
Reference `news` command in `/help`
-rw-r--r-- | code/cogs/help.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/code/cogs/help.py b/code/cogs/help.py index 2cf0f54..e95af21 100644 --- a/code/cogs/help.py +++ b/code/cogs/help.py @@ -85,7 +85,9 @@ class HelpView(discord.ui.View): self, interaction: discord.Interaction, button: discord.ui.Button ): embed = discord.Embed( - title=":musical_note: All Commands :musical_note:", color=BOT_COLOR + title=":musical_note: All Commands :musical_note:", + description="**Check out recent news and updates about the bot with the /news command!\n\u200b**", + color=BOT_COLOR, ) embed.add_field( @@ -109,7 +111,9 @@ class Help(commands.Cog): if command == None: embed = discord.Embed( - title=f":musical_note: Help :musical_note:", color=BOT_COLOR + title=f":musical_note: Help :musical_note:", + description="**Check out recent news and updates about the bot with the /news command!\n\u200b**", + color=BOT_COLOR, ) embed.add_field( |