Skip to content

Commit 748cb23

Browse files
committed
Update music.py
1 parent e9a68d1 commit 748cb23

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/cogs/music.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -456,13 +456,13 @@ async def jump_command(self, ctx, pos):
456456
icon_url=ctx.author.avatar_url)
457457
embed.add_field(name="Title", value=player.title, inline=False)
458458
embed.add_field(name="Remaining in queue", value=str(
459-
len(self.music_queue)), inline=True)
459+
len(self.music_queue)-pos), inline=True)
460460
await ctx.send(embed=embed)
461461
counter = 0
462462
while counter < int(pos) - 1:
463463
self.music_queue.pop(0)
464464
counter += 1
465-
await self.skip_song(ctx)
465+
await self.skip_command(ctx)
466466

467467
@commands.command(name="volume", aliases=["vol"], help="changes the volume of the music player")
468468
async def volume_command(self, ctx, volume: int):

0 commit comments

Comments
 (0)