stash 4
This commit is contained in:
@@ -88,6 +88,14 @@ public class LoginHandler extends AbstractStateHandler implements LoginStateHand
|
||||
pkt8.setInitChunk(true);
|
||||
channel.writeAndFlush(pkt8);
|
||||
|
||||
// One Chunk
|
||||
ChunkDataPacket pkt9 = new ChunkDataPacket();
|
||||
pkt9.setInitChunk(true);
|
||||
pkt9.setX(0);
|
||||
pkt9.setZ(0);
|
||||
pkt9.getChunks().add(world.getChunk(0, 0));
|
||||
channel.writeAndFlush(pkt9);
|
||||
|
||||
// Player Position And Look
|
||||
PlayerPositionAndLookPacket pkt4 = new PlayerPositionAndLookPacket();
|
||||
pkt4.setLocation(player.getLocation());
|
||||
|
||||
Reference in New Issue
Block a user