From 1e46327f10faab8397935739fdd71bd445024350 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Mon, 20 Feb 2023 18:42:04 +0100 Subject: [PATCH] Add author in lyrics auto search --- src/commands/music/lyrics.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/music/lyrics.ts b/src/commands/music/lyrics.ts index b0f81da..aa98c2a 100644 --- a/src/commands/music/lyrics.ts +++ b/src/commands/music/lyrics.ts @@ -56,7 +56,7 @@ export default { const title = queue.current?.title; if (title) { try { - data = await client.player.lyrics.search(title); + data = await client.player.lyrics.search(title + " " + queue.current.author); } catch { return await interaction.followUp(`❌ | ${loc.get("c_lyrics2")} \`${title}\``); }