mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-17 12:03:31 +01:00
fix joining voice channels without perms
This commit is contained in:
@@ -80,6 +80,10 @@ class ClientVoiceManager {
|
|||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
if (this.pending.get(channel.guild.id)) throw new Error('Already connecting to this guild\'s voice server.');
|
if (this.pending.get(channel.guild.id)) throw new Error('Already connecting to this guild\'s voice server.');
|
||||||
|
|
||||||
|
if (!channel.permissionsFor(this.client.user).hasPermission('CONNECT')) {
|
||||||
|
throw new Error('You do not have permission to join this voice channel');
|
||||||
|
}
|
||||||
|
|
||||||
const existingConnection = this.connections.get(channel.guild.id);
|
const existingConnection = this.connections.get(channel.guild.id);
|
||||||
if (existingConnection) {
|
if (existingConnection) {
|
||||||
if (existingConnection.channel.id !== channel.id) {
|
if (existingConnection.channel.id !== channel.id) {
|
||||||
|
|||||||
Reference in New Issue
Block a user