From b579fc56eeed2cd6d0c74bb3b8de9586b1569ba9 Mon Sep 17 00:00:00 2001 From: ErrorNoInternet Date: Mon, 30 Dec 2024 18:48:20 -0500 Subject: [PATCH] refactor(commands/voice/queue): tweak now playing message --- commands/voice.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/commands/voice.py b/commands/voice.py index 61564a1..8d2fcf5 100644 --- a/commands/voice.py +++ b/commands/voice.py @@ -1,11 +1,10 @@ import functools import arguments -import youtubedl -from state import client, player_current, player_queue - import commands import utils +import youtubedl +from state import client, player_current, player_queue async def queue_or_play(message): @@ -113,7 +112,7 @@ async def queue_or_play(message): not message.guild.voice_client.is_playing() and not message.guild.voice_client.is_paused() ): - await utils.reply(message, f"**now playing:** `{player.title}`") + await utils.reply(message, f"**0.** `{player.title}`") play_next(message) else: await utils.reply(