diff --git a/src/structures/Guild.js b/src/structures/Guild.js index 8b5cb2d3c..faa5ce55a 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -106,7 +106,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.