Feat: Author in music stuff #75

Merged
Anri merged 2 commits from music/feat-author into main 2023-02-20 18:43:42 +01:00
Showing only changes of commit 1e46327f10 - Show all commits

View file

@ -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}\``);
}