diff --git a/src/structures/Guild.js b/src/structures/Guild.js index 07c46a0c3..ccf146634 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -40,6 +40,12 @@ class Guild { */ this.roles = new Collection(); + /** + * A collection of presences in this guild + * @type {Collection} + */ + this.presences = new Collection(); + if (!data) return; if (data.unavailable) { /** @@ -101,12 +107,6 @@ class Guild { */ this.large = data.large || this.large; - /** - * A collection of presences in this guild - * @type {Collection} - */ - this.presences = new Collection(); - /** * An array of guild features. * @type {Object[]}