chore(Constants): update large_threshold default (#4698)

This commit is contained in:
Advaith
2020-08-13 11:38:59 -07:00
committed by GitHub
parent 139e56c774
commit f991bd46f3
2 changed files with 3 additions and 3 deletions

View File

@@ -155,7 +155,7 @@ class Guild extends Base {
this.memberCount = data.member_count || this.memberCount;
/**
* Whether the guild is "large" (has more than 250 members)
* Whether the guild is "large" (has more than large_threshold members, 50 by default)
* @type {boolean}
*/
this.large = Boolean('large' in data ? data.large : this.large);