diff --git a/examples/server_world/mc.js b/examples/server_world/mc.js index c458402..f3efc6b 100644 --- a/examples/server_world/mc.js +++ b/examples/server_world/mc.js @@ -28,14 +28,6 @@ server.on('login', function(client) { maxPlayers: server.maxPlayers, reducedDebugInfo: false }); - client.write('position', { - x: 15, - y: 101, - z: 15, - yaw: 137, - pitch: 0, - flags: 0x00 - }); client.write('map_chunk', { x: 0, z: 0, @@ -44,4 +36,12 @@ server.on('login', function(client) { chunkData: chunk.dump(), blockEntities: [] }); + client.write('position', { + x: 15, + y: 101, + z: 15, + yaw: 137, + pitch: 0, + flags: 0x00 + }); });