mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-15 11:03:30 +01:00
Fixed smallish bugs
This commit is contained in:
@@ -1,8 +1,17 @@
|
||||
"use strict";
|
||||
|
||||
var WebSocket = require("ws");
|
||||
var dgram = require("dgram");
|
||||
|
||||
class VoiceConnection{
|
||||
constructor(){
|
||||
|
||||
constructor(channel, client, session, token, server, endpoint){
|
||||
this.voiceChannel = channel;
|
||||
this.client = client;
|
||||
this.session = session;
|
||||
this.token = token;
|
||||
this.server = server;
|
||||
this.endpoint = endpoint;
|
||||
console.log("I was instantiated!");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user