mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-14 18:43:31 +01:00
Added VoiceStateUpdate handler and DataStore for VoiceChannels. Also added toString methods to Guilds, DMChannels, ServerChannels and Users.
This commit is contained in:
12
src/structures/datastore/VoiceChannelDataStore.js
Normal file
12
src/structures/datastore/VoiceChannelDataStore.js
Normal file
@@ -0,0 +1,12 @@
|
||||
'use strict';
|
||||
|
||||
const AbstractDataStore = require('./AbstractDataStore');
|
||||
|
||||
class VoiceChannelDataStore extends AbstractDataStore{
|
||||
constructor() {
|
||||
super();
|
||||
this.register('members');
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = VoiceChannelDataStore;
|
||||
Reference in New Issue
Block a user