mirror of
https://github.com/danbulant/flying-squid
synced 2026-06-19 14:31:17 +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', {
|
||||
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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue