From 4e1bce4b9a3780096f73d9423fad5d87e0067ad9 Mon Sep 17 00:00:00 2001 From: Parker Date: Fri, 29 Nov 2024 00:10:47 -0600 Subject: [PATCH] Append "audio" to YouTube searches --- code/cogs/play.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/cogs/play.py b/code/cogs/play.py index c836b70..ec32c06 100644 --- a/code/cogs/play.py +++ b/code/cogs/play.py @@ -76,7 +76,7 @@ class Play(commands.Cog): LoadType.ERROR, ): # Final search attempt with YouTube - ytsearch = f"ytsearch:{query}" + ytsearch = f"ytsearch:{query} audio" results = await player.node.get_tracks(ytsearch) else: results = await player.node.get_tracks(query)