mirror of
https://github.com/myned/modufur.git
synced 2024-11-01 13:02:38 +00:00
Change queue count to exclude current track
This commit is contained in:
parent
2dfa2da9a0
commit
e639dc4727
1 changed files with 1 additions and 1 deletions
|
@ -467,7 +467,7 @@ async def queue(context):
|
|||
.set_author(name="Queue")
|
||||
.set_thumbnail(plugin.d.queue[context.guild_id].track_handle.metadata.thumbnail)
|
||||
.set_footer(
|
||||
f"{len(plugin.d.queue[context.guild_id]) + 1} track{'s' if len(plugin.d.queue[context.guild_id]) > 1 else ''}"
|
||||
f"{len(plugin.d.queue[context.guild_id])} track{'s' if len(plugin.d.queue[context.guild_id]) > 1 else ''}"
|
||||
)
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue