mirror of
https://github.com/unmojang/node-minecraft-protocol.git
synced 2025-09-29 22:23:21 -04:00
Send The Player Position After The Chunk Data
The players position was sent before sending the chunk which had now been switched.
This commit is contained in:
parent
a70eee40c8
commit
39b2fc2157
@ -28,14 +28,6 @@ server.on('login', function(client) {
|
|||||||
maxPlayers: server.maxPlayers,
|
maxPlayers: server.maxPlayers,
|
||||||
reducedDebugInfo: false
|
reducedDebugInfo: false
|
||||||
});
|
});
|
||||||
client.write('position', {
|
|
||||||
x: 15,
|
|
||||||
y: 101,
|
|
||||||
z: 15,
|
|
||||||
yaw: 137,
|
|
||||||
pitch: 0,
|
|
||||||
flags: 0x00
|
|
||||||
});
|
|
||||||
client.write('map_chunk', {
|
client.write('map_chunk', {
|
||||||
x: 0,
|
x: 0,
|
||||||
z: 0,
|
z: 0,
|
||||||
@ -44,4 +36,12 @@ server.on('login', function(client) {
|
|||||||
chunkData: chunk.dump(),
|
chunkData: chunk.dump(),
|
||||||
blockEntities: []
|
blockEntities: []
|
||||||
});
|
});
|
||||||
|
client.write('position', {
|
||||||
|
x: 15,
|
||||||
|
y: 101,
|
||||||
|
z: 15,
|
||||||
|
yaw: 137,
|
||||||
|
pitch: 0,
|
||||||
|
flags: 0x00
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user