From 380bfaeeeadbd7c3d6d0ee79551fedb35d597d8c Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Mon, 25 Jul 2022 21:10:40 -0400 Subject: Fix a bug with the handshake --- scripts/socket/sock.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts/socket') diff --git a/scripts/socket/sock.js b/scripts/socket/sock.js index 4c64e02..a52faf4 100644 --- a/scripts/socket/sock.js +++ b/scripts/socket/sock.js @@ -11,12 +11,12 @@ class SockWorker extends EventTarget{ this.server = serveraddr; this.version = version; - this.handshake = false; + this.handshake = true; } // Initialize the connection. init () { - this.handshake = false; + this.handshake = true; if(this.server == "" || this.server == null) { return; } @@ -44,9 +44,9 @@ class SockWorker extends EventTarget{ if(typeof e.data == "string") { let dat = JSON.parse(e.data); - if (!this.handshake) { + if (this.handshake) { if (dat.type == "ready") - this.handshake = true; + this.handshake = false; this.dispatchEvent(new CustomEvent("handshake", {detail: dat.type})); return; } -- cgit v1.2.3