Fix memberCount inaccuracy

This commit is contained in:
Amish Shah
2016-08-29 12:42:38 +01:00
parent b44a3770d9
commit fe58105d04
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@@ -239,7 +239,7 @@ class Guild {
*/ */
this.name = data.name; this.name = data.name;
/** /**
* The amount of initial members in the guild. * The full amount of members in this Guild as of `READY`
* @type {Number} * @type {Number}
*/ */
this.memberCount = data.member_count; this.memberCount = data.member_count;