mirror of
https://github.com/danbulant/discord.js
synced 2026-06-20 07:02:00 +00:00
Webpack build for branch master: 93d8ec3e87
This commit is contained in:
parent
d93cdab4b9
commit
a3f0e29332
2 changed files with 2 additions and 2 deletions
|
|
@ -10726,7 +10726,7 @@ class VoiceChannel extends GuildChannel {
|
|||
* @type {boolean}
|
||||
*/
|
||||
get full() {
|
||||
return this.members.size >= this.userLimit;
|
||||
return this.userLimit > 0 && this.members.size >= this.userLimit;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
2
discord.master.min.js
vendored
2
discord.master.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue