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