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):