mirror of
https://github.com/danbulant/discord.js
synced 2026-06-08 17:21:31 +00:00
fix(Guild): default max presences value (#3970)
This commit is contained in:
parent
df324e2c21
commit
0f38d807c7
1 changed files with 1 additions and 1 deletions
|
|
@ -300,7 +300,7 @@ class Guild extends Base {
|
||||||
* @type {?number}
|
* @type {?number}
|
||||||
* @name Guild#maximumPresences
|
* @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
|
* The vanity URL code of the guild, if any
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue