This commit is contained in:
Travis CI 2016-11-30 20:32:34 +00:00
parent 5458d0e63a
commit 464ede757d
2 changed files with 7 additions and 7 deletions

View file

@ -5358,6 +5358,12 @@ class Guild {
*/ */
this.roles = new Collection(); this.roles = new Collection();
/**
* A collection of presences in this guild
* @type {Collection<string, Presence>}
*/
this.presences = new Collection();
if (!data) return; if (!data) return;
if (data.unavailable) { if (data.unavailable) {
/** /**
@ -5419,12 +5425,6 @@ class Guild {
*/ */
this.large = data.large || this.large; this.large = data.large || this.large;
/**
* A collection of presences in this guild
* @type {Collection<string, Presence>}
*/
this.presences = new Collection();
/** /**
* An array of guild features. * An array of guild features.
* @type {Object[]} * @type {Object[]}

File diff suppressed because one or more lines are too long