diff --git a/packages/discord.js/src/client/Client.js b/packages/discord.js/src/client/Client.js index 7f28e1567f5f..23343f45d4ef 100644 --- a/packages/discord.js/src/client/Client.js +++ b/packages/discord.js/src/client/Client.js @@ -279,7 +279,6 @@ class Client extends BaseClient { (await this.ws.fetchStatus()).every(status => status === WebSocketShardStatus.Ready) ) { this.emit(Events.Debug, 'Client received all its guilds. Marking as fully ready.'); - this.status = Status.Ready; this._triggerClientReady(); return; @@ -302,7 +301,6 @@ class Client extends BaseClient { ); this.readyTimeout = null; - this.status = Status.Ready; this._triggerClientReady(); },