Working Mori's heal/revive command

This commit is contained in:
2018-11-01 22:24:18 +11:00
parent 9c2932f0b1
commit 4d57cd12c3
4 changed files with 115 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ exports.ConnectToServer = function(username, address, port, pass) { //NOTE: this
io.on("connect", () => io.emit("authentication", {SERVER_PASS_KEY: pass, username: username}) );
io.on("authenticated", () => console.log("Authenticated with server: " + `${address}:${port}`));
io.on("disconnect", () => console.log("disconnected from server: " + `${address}:${port}`));
io.on("error", (err) => { throw err; } );
// io.on("error", (err) => { throw err; } );
initialized = true;
}