diff options
author | Parker <contact@pkrm.dev> | 2024-10-30 21:45:09 -0500 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-10-30 21:45:09 -0500 |
commit | c1b229f34c010108b0e7eb92de2102dfc07ae70c (patch) | |
tree | 2c9493374be07a0093b225f68a5f69f72010c840 /code/cogs/skip.py | |
parent | f4c855b2de7efdcc84605298fa1d37a87cc7782d (diff) |
NO player.repeat -> YES player.loop
Diffstat (limited to 'code/cogs/skip.py')
-rw-r--r-- | code/cogs/skip.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 </stop:1224840890866991305> to stop playing music.", |