From d52266300c3e6ec9c39c5eb5c687df1da8d74a71 Mon Sep 17 00:00:00 2001 From: ErrorNoInternet Date: Mon, 6 Jan 2025 19:26:40 -0500 Subject: [PATCH] refactor(commands/voice/queue): only show footer when more than one queued --- commands/voice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/voice.py b/commands/voice.py index 19466ec..660679a 100644 --- a/commands/voice.py +++ b/commands/voice.py @@ -196,7 +196,7 @@ async def queue_or_play(message, edited=False): description=description, color=constants.EMBED_COLOR, ) - if formatted_duration: + if formatted_duration and len(players[message.guild.id].queue) > 1: e.set_footer(text=f"{formatted_duration} in total") return e