feat(Call): Get users in dm call

This commit is contained in:
March 7th
2022-08-14 17:16:51 +07:00
parent a24f29b802
commit bb24adc1dc
6 changed files with 118 additions and 12 deletions

View File

@@ -118,6 +118,10 @@ class Client extends BaseClient {
*/
this.voice = new ClientVoiceManager(this);
/**
* A manager of the voice states of this client (Support DM / Group DM)
* @type {VoiceStateManager}
*/
this.voiceStates = new VoiceStateManager({ client: this });
/**
@@ -240,6 +244,10 @@ class Client extends BaseClient {
this.options.messageSweepInterval * 1_000,
).unref();
}
if (this.options.intents) {
process.emitWarning('Intent is not available.', 'DeprecationWarning');
}
}
/**