aboutsummaryrefslogtreecommitdiff
path: root/code/cogs
diff options
context:
space:
mode:
authorParker <contact@pkrm.dev>2024-08-02 21:48:10 -0500
committerParker <contact@pkrm.dev>2024-08-02 21:48:10 -0500
commit6fdfba09b2cad092e851ee5db0a594d96dbdd47e (patch)
treedff1ddc49aab411e906fb8dd560c53b72b195ed9 /code/cogs
parent333cb3adc5de9d163685491f08265a4f0e4a3c93 (diff)
Update references for new `/lyrics` command
Diffstat (limited to 'code/cogs')
-rw-r--r--code/cogs/help.py4
-rw-r--r--code/cogs/news.py5
2 files changed, 9 insertions, 0 deletions
diff --git a/code/cogs/help.py b/code/cogs/help.py
index a15d6d2..97af668 100644
--- a/code/cogs/help.py
+++ b/code/cogs/help.py
@@ -70,6 +70,10 @@ commands_and_descriptions = {
"description": "Resume the song that is currently paused",
"usage": "/resume",
},
+ "lyrics": {
+ "description": "Get the lyrics of the song that is currently playing",
+ "usage": "/lyrics",
+ },
"news": {
"description": "Get recent news and updates about the bot",
"usage": "/news",
diff --git a/code/cogs/news.py b/code/cogs/news.py
index c115559..9013567 100644
--- a/code/cogs/news.py
+++ b/code/cogs/news.py
@@ -19,6 +19,11 @@ class News(commands.Cog):
)
embed.add_field(
+ name="**Lyrics!**",
+ value="> You can now get lyrics for the song that is currently playing. Just use the `/lyrics` command! Some songs may not have lyrics available, but the bot will do its best to find them.",
+ )
+
+ embed.add_field(
name="**Apple Music Support!**",
value="> After some trial and error, you can now play music through Apple Music links. Just paste the link and the bot will do the rest!",
)