This commit is contained in:
Travis CI 2017-01-05 15:44:49 +00:00
parent b880cb7129
commit a984f1d29c
2 changed files with 2 additions and 2 deletions

View file

@ -3022,7 +3022,7 @@ class Guild {
* Whether the guild is "large" (has more than 250 members)
* @type {boolean}
*/
this.large = data.large || this.large;
this.large = Boolean('large' in data ? data.large : this.large);
/**
* An array of guild features.

File diff suppressed because one or more lines are too long