Some fixes

This commit is contained in:
Essem 2021-07-06 07:53:09 -05:00
parent 97050f0cf1
commit a91720c598
No known key found for this signature in database
GPG key ID: 7D497397CC3A2A8C
4 changed files with 5 additions and 5 deletions

View file

@ -3,7 +3,7 @@ const soundPlayer = require("../utils/soundplayer.js");
class MusicCommand extends Command {
constructor(client, cluster, worker, ipc, message, args, content, specialArgs) {
super(client, cluster, ipc, message, args, content, specialArgs);
super(client, cluster, worker, ipc, message, args, content, specialArgs);
this.connection = soundPlayer.players.get(message.channel.guild.id);
}