From 8f447fe5eb3c425aa5a27fbecd29cbb975827d0d Mon Sep 17 00:00:00 2001 From: sirpiglr <49359077-sirpiglr@users.noreply.replit.com> Date: Sat, 13 Dec 2025 08:38:13 +0000 Subject: [PATCH] Fix music commands by correcting parameter order Correct parameter order in music command execution to resolve "music player not available" errors. Replit-Commit-Author: Agent Replit-Commit-Session-Id: aed2e46d-25bb-4b73-81a1-bb9e8437c261 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: e7e7ed33-105f-4167-9ac2-27f35985e3b2 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3bdfff67-975a-46ad-9845-fbb6b4a4c4b5/aed2e46d-25bb-4b73-81a1-bb9e8437c261/RxaoyQl Replit-Helium-Checkpoint-Created: true --- aethex-bot/commands/music.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aethex-bot/commands/music.js b/aethex-bot/commands/music.js index bfe4cc1..729de3c 100644 --- a/aethex-bot/commands/music.js +++ b/aethex-bot/commands/music.js @@ -54,7 +54,7 @@ module.exports = { { name: 'Queue', value: 'queue' } ))), - async execute(interaction, client, supabase) { + async execute(interaction, supabase, client) { const subcommand = interaction.options.getSubcommand(); const kazagumo = client.kazagumo;