Add proper references for all remaining commands

This commit is contained in:
Parker M. 2024-07-12 02:56:06 -05:00
parent ca98c58e03
commit 787342be98
No known key found for this signature in database
GPG Key ID: 95CD2E0C7E329F2A
5 changed files with 17 additions and 5 deletions

View File

@ -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)

View File

@ -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",

View File

@ -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(

View File

@ -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(

View File

@ -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
)