diff --git a/src/bot.py b/src/bot.py index 66d9b19..702dd73 100644 --- a/src/bot.py +++ b/src/bot.py @@ -64,7 +64,8 @@ class Music(commands.Cog): title = data.get('title') url = data.get('url') await self.queue.put((ctx, url, title)) - await ctx.send(f"Queued: {title}") + if ctx.voice_client.is_playing(): + await ctx.send(f"Queued: {title}") @commands.command() async def stop(self, ctx):