From 331b266ec3a607f156263824a147aedbe5f7ab89 Mon Sep 17 00:00:00 2001 From: Parker Date: Fri, 12 Apr 2024 17:52:40 -0500 Subject: [PATCH] Increase skip command sleep time --- 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 5a57554..4e9aa7a 100644 --- a/code/cogs/skip.py +++ b/code/cogs/skip.py @@ -57,7 +57,7 @@ class Skip(commands.Cog): # It takes a sec for the new track to be grabbed and played # So just wait a sec before sending the message - await asyncio.sleep(0.5) + await asyncio.sleep(1) embed = discord.Embed( title="Track Skipped", description=f"**Now Playing: [{player.current.title}]({player.current.uri})** by {player.current.author}\n\nQueued by: {player.current.requester.mention}",