mirror of
https://github.com/danbulant/discord.js
synced 2026-07-07 12:11:11 +00:00
Fix memberCount inaccuracy
This commit is contained in:
parent
b44a3770d9
commit
fe58105d04
2 changed files with 2 additions and 2 deletions
File diff suppressed because one or more lines are too long
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue