We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff46e95 commit c0f3428Copy full SHA for c0f3428
packages/discord.js/src/client/websocket/WebSocketShard.js
@@ -195,8 +195,9 @@ class WebSocketShard extends EventEmitter {
195
this.readyTimeout = setTimeout(
196
() => {
197
this.debug([
198
- // eslint-disable-next-line max-len
199
- `Shard ${hasGuildsIntent ? 'did' : 'will'} not receive anymore guild packets${hasGuildsIntent ? ` in ${waitGuildTimeout} ms` : ''}.`,
+ hasGuildsIntent
+ ? `Shard did not receive any guild packets in ${waitGuildTimeout} ms.`
200
+ : 'Shard will not receive anymore guild packets.',
201
`Unavailable guild count: ${this.expectedGuilds.size}`,
202
]);
203
0 commit comments