refactor(commands/voice/queue): tweak now playing message

This commit is contained in:
Ryan 2024-12-30 18:48:20 -05:00
parent f09e82c211
commit b579fc56ee
Signed by: ErrorNoInternet
GPG Key ID: 2486BFB7B1E6A4A3

View File

@ -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(