fix(commands/voice/queue): lock when queue_or_play

This commit is contained in:
2024-12-30 18:06:47 -05:00
parent 73c1ebf9ee
commit 393403ef7d
3 changed files with 10 additions and 4 deletions

View File

@@ -2,11 +2,12 @@ import time
import disnake
start_time = time.time()
player_queue = {}
player_current = {}
command_locks = {}
intents = disnake.Intents.default()
intents.message_content = True
client = disnake.Client(intents=intents)
start_time = time.time()