aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--code/cogs/autoplay.py2
-rw-r--r--code/cogs/help.py12
-rw-r--r--code/cogs/queue.py2
-rw-r--r--code/cogs/repeat.py4
-rw-r--r--code/cogs/skip.py2
5 files changed, 17 insertions, 5 deletions
diff --git a/code/cogs/autoplay.py b/code/cogs/autoplay.py
index 0779e69..77cf376 100644
--- a/code/cogs/autoplay.py
+++ b/code/cogs/autoplay.py
@@ -35,7 +35,7 @@ class Autoplay(commands.Cog):
if interaction.guild.id in self.bot.autoplay:
embed = discord.Embed(
title="Autoplay Already Enabled",
- description="Autoplay is already enabled. If you would like to turn it off, choose the `OFF` option in the `/autoplay` command.",
+ description="Autoplay is already enabled. If you would like to turn it off, choose the `OFF` option in the </autoplay:1228216490386391052> command.",
color=BOT_COLOR,
)
return await interaction.response.send_message(embed=embed, ephemeral=True)
diff --git a/code/cogs/help.py b/code/cogs/help.py
index 0a619b8..2626223 100644
--- a/code/cogs/help.py
+++ b/code/cogs/help.py
@@ -62,6 +62,18 @@ commands_and_descriptions = {
},
"usage": "/shuffle <on/off>",
},
+ "pause": {
+ "description": "Pause the song that is currently playing",
+ "usage": "/pause",
+ },
+ "resume": {
+ "description": "Resume the song that is currently paused",
+ "usage": "/resume",
+ },
+ "news": {
+ "description": "Get recent news and updates about the bot",
+ "usage": "/news",
+ },
"bug": {
"description": "Fill out a bug report form to alert the developer of issues",
"usage": "/bug",
diff --git a/code/cogs/queue.py b/code/cogs/queue.py
index d356b54..2f00671 100644
--- a/code/cogs/queue.py
+++ b/code/cogs/queue.py
@@ -23,7 +23,7 @@ class Queue(commands.Cog):
if not player.queue:
embed = discord.Embed(
title="Nothing Queued",
- description="Nothing is currently in the queue, add a song with the `/play` command.",
+ description="Nothing is currently in the queue, add a song with the </play:1224840890368000172> command.",
color=BOT_COLOR,
)
embed.set_footer(
diff --git a/code/cogs/repeat.py b/code/cogs/repeat.py
index 4424b72..5f27b6e 100644
--- a/code/cogs/repeat.py
+++ b/code/cogs/repeat.py
@@ -70,7 +70,7 @@ class Repeat(commands.GroupCog, name="repeat"):
embed = discord.Embed(
title=f"Repeating Current Song 🔁",
- description=f"The song that is currently playing will be repeated until the `/repeat off` command is run",
+ description=f"The song that is currently playing will be repeated until the </repeat off:1224840891395608737> command is run",
color=BOT_COLOR,
)
embed.set_footer(
@@ -105,7 +105,7 @@ class Repeat(commands.GroupCog, name="repeat"):
embed = discord.Embed(
title=f"Repeating Current Song 🔂",
- description=f"All songs in the queue will continue to repeat until the `/repeat off` command is run.",
+ description=f"All songs in the queue will continue to repeat until the </repeat off:1224840891395608737> command is run.",
color=BOT_COLOR,
)
embed.set_footer(
diff --git a/code/cogs/skip.py b/code/cogs/skip.py
index c1692c7..966a8c2 100644
--- a/code/cogs/skip.py
+++ b/code/cogs/skip.py
@@ -32,7 +32,7 @@ class Skip(commands.Cog):
elif number > len(player.queue):
embed.title = "Number too Large"
- embed.description = "The number you entered is larger than the number of songs in queue. If you want to stop playing music entirely, try the `/stop` command."
+ embed.description = "The number you entered is larger than the number of songs in queue. If you want to stop playing music entirely, try the </stop:1224840890866991305> command."
return await interaction.response.send_message(
embed=embed, ephemeral=True
)