Making player title bold

pull/4/head
sgoudham 4 years ago
parent bf0f10808b
commit 3a723e8a55

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

Loading…
Cancel
Save