fix(Player): add intents checking

This commit is contained in:
DevAndromeda 2021-08-09 18:49:58 +05:45
parent 615c3ad82f
commit c116097954
No known key found for this signature in database
GPG key ID: FA40E3EC5CB6DCD6

View file

@ -46,7 +46,7 @@ class Player extends EventEmitter<PlayerEvents> {
*/ */
this.client = client; this.client = client;
if (!(new Intents(this.client.options.intents).has(Intents.FLAGS.GUILD_VOICE_STATES))) { if (!new Intents(this.client.options.intents).has(Intents.FLAGS.GUILD_VOICE_STATES)) {
throw new PlayerError('client is missing "GUILD_VOICE_STATES" intent'); throw new PlayerError('client is missing "GUILD_VOICE_STATES" intent');
} }