diff options
author | Parker <contact@pkrm.dev> | 2024-12-03 00:03:16 -0600 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-12-03 00:03:16 -0600 |
commit | fbe8dbe4552b55959980cc93d94adb491336900c (patch) | |
tree | d230410ee9186fca24bcac986ac880dfe0f64629 | |
parent | 514151f8cc72931ae30d66896a7394ae3af09652 (diff) |
Update embed
-rw-r--r-- | code/cogs/news.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/code/cogs/news.py b/code/cogs/news.py index 35aeb04..fb7c929 100644 --- a/code/cogs/news.py +++ b/code/cogs/news.py @@ -23,7 +23,7 @@ class News(commands.Cog): embed.add_field( name="**Limited YouTube Support**", - description=( + value=( "Support for YouTube links and searches has been added. This" " is currently in a testing phase and is not guaranteed to" " work. If you encounter any issues, please submit a but" @@ -32,6 +32,16 @@ class News(commands.Cog): inline=False, ) + embed.add_field( + name="**General Improvements**", + value=( + "Quality of life updates and general improvements have been" + " made. Hopefully there are no new bugs, but please report any" + " with </bug:1224840889906499626>." + ), + inline=False, + ) + await interaction.response.send_message(embed=embed, ephemeral=True) |