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 ." + ), + inline=False, + ) + await interaction.response.send_message(embed=embed, ephemeral=True)