fix(Guild): default max presences value (#3970)

This commit is contained in:
Advaith
2020-03-21 01:02:12 -07:00
committed by GitHub
parent df324e2c21
commit 0f38d807c7

View File

@@ -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