diff --git a/src/client/websocket/WebSocketShard.js b/src/client/websocket/WebSocketShard.js index c27f3bc..bc9109b 100644 --- a/src/client/websocket/WebSocketShard.js +++ b/src/client/websocket/WebSocketShard.js @@ -434,7 +434,7 @@ class WebSocketShard extends EventEmitter { this.resumeURL = packet.d.resume_gateway_url; this.expectedGuilds = new Set(packet.d.guilds.filter(d => d?.unavailable == true).map(d => d.id)); this.status = Status.WAITING_FOR_GUILDS; - this.debug(`[READY] Session ${this.sessionId} | ResumeURL ${this.resumeURL}.`); + this.debug(`[READY] Session ${this.sessionId} | ResumeURL ${this.resumeURL}`); this.lastHeartbeatAcked = true; this.sendHeartbeat('ReadyHeartbeat'); break;