diff options
author | madmaxoft <github@xoft.cz> | 2014-09-25 20:46:50 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-09-25 20:47:29 +0200 |
commit | 8f4cc27e39188d302f6575e7324002e2515fd789 (patch) | |
tree | 50069778d50f256b3316c18a18d6203f04909c56 /src/Protocol/ChunkDataSerializer.cpp | |
parent | Merge pull request #1452 from Howaner/Fixes (diff) | |
download | cuberite-8f4cc27e39188d302f6575e7324002e2515fd789.tar cuberite-8f4cc27e39188d302f6575e7324002e2515fd789.tar.gz cuberite-8f4cc27e39188d302f6575e7324002e2515fd789.tar.bz2 cuberite-8f4cc27e39188d302f6575e7324002e2515fd789.tar.lz cuberite-8f4cc27e39188d302f6575e7324002e2515fd789.tar.xz cuberite-8f4cc27e39188d302f6575e7324002e2515fd789.tar.zst cuberite-8f4cc27e39188d302f6575e7324002e2515fd789.zip |
Diffstat (limited to 'src/Protocol/ChunkDataSerializer.cpp')
-rw-r--r-- | src/Protocol/ChunkDataSerializer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Protocol/ChunkDataSerializer.cpp b/src/Protocol/ChunkDataSerializer.cpp index a133cc0e3..5d080656d 100644 --- a/src/Protocol/ChunkDataSerializer.cpp +++ b/src/Protocol/ChunkDataSerializer.cpp @@ -191,7 +191,7 @@ void cChunkDataSerializer::Serialize47(AString & a_Data, int a_ChunkX, int a_Chu Packet.WriteBEInt(a_ChunkX); Packet.WriteBEInt(a_ChunkZ); Packet.WriteBool(true); // "Ground-up continuous", or rather, "biome data present" flag - Packet.WriteBEShort((short) 0xffff); // We're aways sending the full chunk with no additional data, so the bitmap is 0xffff + Packet.WriteBEUShort(0xffff); // We're aways sending the full chunk with no additional data, so the bitmap is 0xffff // Write the chunk size: const int BiomeDataSize = cChunkDef::Width * cChunkDef::Width; |