Update skip command

Send the proper message and return if the end of the queue is reached once a song is skipped
This commit is contained in:
Parker M. 2024-03-31 02:14:00 -05:00
parent 6fca198184
commit 246a424da2
No known key found for this signature in database
GPG Key ID: 95CD2E0C7E329F2A

View File

@ -41,6 +41,14 @@ class Skip(commands.Cog):
await player.skip()
if not player.current:
embed = discord.Embed(
title="End of Queue",
description=f"All songs in queue have been played. Thank you for using Guava :wave:\n\nIssued by: {interaction.user.mention}",
color=BOT_COLOR
)
return await interaction.response.send_message(embed=embed)
# It takes a sec for the new track to be grabbed and played
# So just wait a sec before sending the message
await asyncio.sleep(0.5)