From 3a723e8a55f62c86326583344babe3631c612bc0 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Fri, 10 Jul 2020 22:05:13 +0100 Subject: [PATCH] Making player title bold --- cogs/music.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/music.py b/cogs/music.py index 59dd916b..9325d967 100644 --- a/cogs/music.py +++ b/cogs/music.py @@ -80,7 +80,7 @@ class Music(commands.Cog): player = await YTDLSource.from_url(url, loop=self.bot.loop) ctx.voice_client.play(player, after=lambda e: print('Player error: %s' % e) if e else None) - await ctx.send('Now playing: {}'.format(player.title)) + await ctx.send('Now playing: **{}**'.format(player.title)) @commands.command() async def stream(self, ctx, *, url):