From 0f38d807c7275ace27d85e7b65a7189818da3f7b Mon Sep 17 00:00:00 2001 From: Advaith Date: Sat, 21 Mar 2020 01:02:12 -0700 Subject: [PATCH] fix(Guild): default max presences value (#3970) --- src/structures/Guild.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/Guild.js b/src/structures/Guild.js index bddf90f61..733a1fdb6 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -300,7 +300,7 @@ class Guild extends Base { * @type {?number} * @name Guild#maximumPresences */ - if (typeof data.max_presences !== 'undefined') this.maximumPresences = data.max_presences || 5000; + if (typeof data.max_presences !== 'undefined') this.maximumPresences = data.max_presences || 25000; /** * The vanity URL code of the guild, if any