Attempted assorted fixes

This commit is contained in:
abalabahaha
2016-03-12 21:44:07 -08:00
parent 25f25f5506
commit 5e64d96272
6 changed files with 11 additions and 13 deletions

View File

@@ -7,7 +7,7 @@ import {reg} from "../Util/ArgumentRegulariser";
export default class VoiceChannel extends ServerChannel{
constructor(data, client, server){
super(data, client, server);
this.members = new Cache();
this.members = data.members || new Cache();
}
join(callback = function () { }) {