Only send 'Queued:' if currently playing
This commit is contained in:
parent
002111df8e
commit
d14b40d9f7
|
@ -64,6 +64,7 @@ class Music(commands.Cog):
|
||||||
title = data.get('title')
|
title = data.get('title')
|
||||||
url = data.get('url')
|
url = data.get('url')
|
||||||
await self.queue.put((ctx, url, title))
|
await self.queue.put((ctx, url, title))
|
||||||
|
if ctx.voice_client.is_playing():
|
||||||
await ctx.send(f"Queued: {title}")
|
await ctx.send(f"Queued: {title}")
|
||||||
|
|
||||||
@commands.command()
|
@commands.command()
|
||||||
|
|
Loading…
Reference in New Issue