From fb231e3c6f3afbd40de5a94187221b788656cb5c Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Sun, 17 Oct 2021 13:28:45 -0400 Subject: [HOTFIX] "chat" variable in client --- scripts/client.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/client.js') diff --git a/scripts/client.js b/scripts/client.js index 1e7bacc..21b3157 100644 --- a/scripts/client.js +++ b/scripts/client.js @@ -50,7 +50,7 @@ class Client{ this.socket.addEventListener("handshake", this.handshake.bind(this)); this.socket.addEventListener("menu", this.menu.bind(this)); this.socket.addEventListener("game", this.game.bind(this)); - this.socket.addEventListener("chat", this.chat.bind(this)); + this.socket.addEventListener("chat", this.msg.bind(this)); this.lobby = new Lobby(document.getElementsByClassName("lobby")[0], this.socket); @@ -142,7 +142,7 @@ class Client{ } // Callback when a chat event is recieved from the server - chat (e) + msg (e) { let m = e.detail; this.chat[m.type](m.data); -- cgit v1.2.3