Androz2091 / discord-music-bot

The perfect music bot for your Discord server! 🤘
238 stars 127 forks source link

/shuffle, /seek, /jump, and /back commands not working #11

Closed elvanz closed 3 years ago

elvanz commented 3 years ago

All of these 4 commands are not working and after 5 minutes they generates "This interaction failed" warning.

Screenshot 2021-09-02 151245

elvanz commented 3 years ago

I fixed the problem! For those who had the same problem as me you should look into each command.js file and then navigate to this line : const queue = client.player.getQueue(interaction.guildId);

and change it to : const queue = client.player.getQueue(ctx.guildID); //NOTE : yes guildID not guildId is the problem for me