ESLint stuff...

This commit is contained in:
Amish Shah
2016-08-13 14:44:49 +01:00
parent 53d767ec04
commit b8db4c4f4b
74 changed files with 2574 additions and 2956 deletions

View File

@@ -1,18 +1,16 @@
'use strict';
const ServerChannel = require('./ServerChannel');
const VoiceChannelDataStore = require('./datastore/VoiceChannelDataStore');
class VoiceChannel extends ServerChannel {
constructor(guild, data) {
super(guild, data);
this.store = new VoiceChannelDataStore();
}
constructor(guild, data) {
super(guild, data);
this.store = new VoiceChannelDataStore();
}
setup(data) {
super.setup(data);
this.bitrate = data.bitrate;
}
setup(data) {
super.setup(data);
this.bitrate = data.bitrate;
}
}
module.exports = VoiceChannel;