This commit is contained in:
Mylloon 2021-07-28 14:40:53 +02:00
parent ebfb34d499
commit 2c917f466e

View file

@ -550,4 +550,6 @@ class Music(commands.Cog):
@commands.command(name='lyricsromanized', aliases = ['lr', 'lyricromanized'], hidden = True)
async def _lyricsromanized(self, ctx, *, song: str = None):
if not song and ctx.voice_state.is_playing:
song = f"{ctx.voice_state.current.title()}"
await ctx.invoke(self.client.get_command("lyrics"), song = f"{song} romanized" if song else song)