From 703abc22e8467b8ec7c1b626c22001ed1e810707 Mon Sep 17 00:00:00 2001 From: mhsjlw Date: Tue, 25 Aug 2015 10:32:30 -0400 Subject: [PATCH] Tab fixes --- app.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app.js b/app.js index cec2482..e9b0f51 100644 --- a/app.js +++ b/app.js @@ -55,8 +55,8 @@ server.on('login', function(client) { otherClient.write('player_info', { action: 0, data: [{ - UUID: otherClient.uuid.split("-").map(function(item) { return parseInt(item, 16); }), - name: otherClient.username, + UUID: client.uuid.split("-").map(function(item) { return parseInt(item, 16); }), + name: client.username, properties: [], gamemode: 0, ping: 1, @@ -70,8 +70,8 @@ server.on('login', function(client) { entry.write('player_info', { action: 0, data: [{ - UUID: entry.uuid.split("-").map(function(item) { return parseInt(item, 16); }), - name: entry.username, + UUID: client.uuid.split("-").map(function(item) { return parseInt(item, 16); }), + name: client.username, properties: [], gamemode: 0, ping: 1,