From c1b229f34c010108b0e7eb92de2102dfc07ae70c Mon Sep 17 00:00:00 2001 From: Parker Date: Wed, 30 Oct 2024 21:45:09 -0500 Subject: [PATCH] NO player.repeat -> YES player.loop --- code/cogs/skip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/cogs/skip.py b/code/cogs/skip.py index 2402510..dc87ba0 100644 --- a/code/cogs/skip.py +++ b/code/cogs/skip.py @@ -46,7 +46,7 @@ class Skip(commands.Cog): except IndexError: # If the song is on repeat, catch the IndexError and get the current song # Otherwise, pass - if player.repeat: + if player.loop == 1: embed = discord.Embed( title="Song on Repeat", description="There is nothing in queue, but the current song is on repeat. Use to stop playing music.",