Webpack build for branch master: 93d8ec3e87

This commit is contained in:
Travis CI 2017-01-17 04:38:21 +00:00
parent d93cdab4b9
commit a3f0e29332
2 changed files with 2 additions and 2 deletions

View file

@ -10726,7 +10726,7 @@ class VoiceChannel extends GuildChannel {
* @type {boolean} * @type {boolean}
*/ */
get full() { get full() {
return this.members.size >= this.userLimit; return this.userLimit > 0 && this.members.size >= this.userLimit;
} }
/** /**

File diff suppressed because one or more lines are too long