diff --git a/src/util/Options.js b/src/util/Options.js index 39390cb..149ceda 100644 --- a/src/util/Options.js +++ b/src/util/Options.js @@ -77,7 +77,7 @@ const JSONBig = require('json-bigint'); * [User Agent](https://discord.com/developers/docs/reference#user-agent) header * @property {PresenceData} [presence={}] Presence data to use upon login * @property {IntentsResolvable} [intents] Intents to enable for this connection - * @property {number} [waitGuildTimeout=15_000] Time in milliseconds that Clients with the GUILDS intent should wait for + * @property {number} [waitGuildTimeout=0] Time in milliseconds that Clients with the GUILDS intent should wait for * missing guilds to be received before starting the bot. If not specified, the default is 15 seconds. * @property {SweeperOptions} [sweepers={}] Options for cache sweeping * @property {WebsocketOptions} [ws] Options for the WebSocket @@ -142,7 +142,7 @@ class Options extends null { readyStatus: true, autoCookie: true, patchVoice: true, - waitGuildTimeout: 15_000, + waitGuildTimeout: 0, shardCount: 1, makeCache: this.cacheWithLimits(this.defaultMakeCacheSettings), messageCacheLifetime: 0,