From 614359abd1d14d4daf4be9c3ac675b8847680655 Mon Sep 17 00:00:00 2001 From: ErrorNoInternet Date: Sun, 5 Jan 2025 18:06:13 -0500 Subject: [PATCH] fix(commands/voice/queue): actually pass `edited` --- core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core.py b/core.py index f67373a..85723f6 100644 --- a/core.py +++ b/core.py @@ -105,7 +105,7 @@ async def on_message(message, edited=False): await commands.voice.leave(message) case C.QUEUE | C.PLAY: async with command_locks[message.guild.id]: - await commands.voice.queue_or_play(message, edited=True) + await commands.voice.queue_or_play(message, edited) case C.SKIP: async with command_locks[message.guild.id]: await commands.voice.skip(message)