discord.js-music
discord.js-music copied to clipboard
options is not defined
When i try to run discord.js-music on my bot, i get an error saying "options is not defined", and the error lies within the code music(client, options);
Here is the rest of my code if it helps:
const music = require('discord.js-music');
const client = new Client();
music(client, {
prefix: 'b!',
global: false,
maxQueueSize: 20
});