mirror of
https://github.com/danbulant/flying-squid
synced 2026-07-07 12:10:46 +00:00
Tab fixes
This commit is contained in:
parent
bc657b0a31
commit
703abc22e8
1 changed files with 4 additions and 4 deletions
8
app.js
8
app.js
|
|
@ -55,8 +55,8 @@ server.on('login', function(client) {
|
||||||
otherClient.write('player_info', {
|
otherClient.write('player_info', {
|
||||||
action: 0,
|
action: 0,
|
||||||
data: [{
|
data: [{
|
||||||
UUID: otherClient.uuid.split("-").map(function(item) { return parseInt(item, 16); }),
|
UUID: client.uuid.split("-").map(function(item) { return parseInt(item, 16); }),
|
||||||
name: otherClient.username,
|
name: client.username,
|
||||||
properties: [],
|
properties: [],
|
||||||
gamemode: 0,
|
gamemode: 0,
|
||||||
ping: 1,
|
ping: 1,
|
||||||
|
|
@ -70,8 +70,8 @@ server.on('login', function(client) {
|
||||||
entry.write('player_info', {
|
entry.write('player_info', {
|
||||||
action: 0,
|
action: 0,
|
||||||
data: [{
|
data: [{
|
||||||
UUID: entry.uuid.split("-").map(function(item) { return parseInt(item, 16); }),
|
UUID: client.uuid.split("-").map(function(item) { return parseInt(item, 16); }),
|
||||||
name: entry.username,
|
name: client.username,
|
||||||
properties: [],
|
properties: [],
|
||||||
gamemode: 0,
|
gamemode: 0,
|
||||||
ping: 1,
|
ping: 1,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue