Tidy up unused variable/old logic

This commit is contained in:
Parker M. 2024-12-01 01:48:53 -06:00
parent fa9a78314f
commit 9f7c286078
Signed by: parker
GPG Key ID: 505ED36FC12B5D5E

View File

@ -49,26 +49,21 @@ class Skip(commands.Cog):
for i in range(number - 2, -1, -1):
player.queue.pop(i)
# If there is a next song, get it
try:
next_song = player.queue[0]
except IndexError:
# If the song is on repeat, catch the IndexError and get the current song
# Otherwise, pass
if player.loop == 1:
embed = create_embed(
title="Song on Repeat",
description=(
"There is nothing in queue, but the current song is on"
" repeat. Use </stop:1224840890866991305> to stop"
" playing music."
),
)
return await interaction.response.send_message(
embed=embed, ephemeral=True
)
else:
pass
# If the queue is empty, but the current song is on repeat
if player.loop == 1 and not player.queue:
embed = create_embed(
title="Song on Repeat",
description=(
"There is nothing in queue, but the current song is on"
" repeat. Use </stop:1224840890866991305> to stop"
" playing music."
),
)
return await interaction.response.send_message(
embed=embed, ephemeral=True
)
else:
pass
# Skip current track, continue skipping on LoadError
while True: