Update #10

Merged
PacketParker merged 26 commits from dev into main 2024-12-03 00:05:14 -06:00
Showing only changes of commit 33493b7b4e - Show all commits

View File

@ -70,13 +70,13 @@ class Skip(commands.Cog):
else: else:
pass pass
# Sometimes when a playlist/album of custom source tracks are loaded, one is not able to be found # Skip current track, continue skipping on LoadError
# so, when a user attempts to skip to that track, we get a LoadError. In this case, just pass it. while True:
try: try:
await player.skip() await player.skip()
break
except LoadError: except LoadError:
pass continue
await player.skip()
if not player.current: if not player.current:
embed = create_embed( embed = create_embed(