mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-12 09:33:32 +01:00
Make ServerChannel GuildChannel
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user