Make ServerChannel GuildChannel

This commit is contained in:
Amish Shah
2016-08-18 10:27:31 +01:00
parent 46e89f56c7
commit 159233059e
5 changed files with 10 additions and 10 deletions

View File

@@ -1,10 +1,10 @@
const ServerChannel = require('./ServerChannel');
const GuildChannel = require('./GuildChannel');
const VoiceChannelDataStore = require('./datastore/VoiceChannelDataStore');
/**
* Represents a Server Voice Channel on Discord.
*/
class VoiceChannel extends ServerChannel {
class VoiceChannel extends GuildChannel {
constructor(guild, data) {
super(guild, data);
this.store = new VoiceChannelDataStore();