mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-17 12:03:31 +01:00
fix(Guild): default max presences value (#3970)
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user