diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-09-08 00:36:30 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-09-08 00:36:30 +0200 |
commit | 09ff17b71ea5659dc628d9d6e3f1fd308d10037a (patch) | |
tree | 6771e5ea4a8d924b8ca3947f38dfea735e893ed8 /src/Protocol/Protocol125.cpp | |
parent | Fixed client errors. (diff) | |
download | cuberite-09ff17b71ea5659dc628d9d6e3f1fd308d10037a.tar cuberite-09ff17b71ea5659dc628d9d6e3f1fd308d10037a.tar.gz cuberite-09ff17b71ea5659dc628d9d6e3f1fd308d10037a.tar.bz2 cuberite-09ff17b71ea5659dc628d9d6e3f1fd308d10037a.tar.lz cuberite-09ff17b71ea5659dc628d9d6e3f1fd308d10037a.tar.xz cuberite-09ff17b71ea5659dc628d9d6e3f1fd308d10037a.tar.zst cuberite-09ff17b71ea5659dc628d9d6e3f1fd308d10037a.zip |
Diffstat (limited to 'src/Protocol/Protocol125.cpp')
-rw-r--r-- | src/Protocol/Protocol125.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Protocol/Protocol125.cpp b/src/Protocol/Protocol125.cpp index a66c64309..a74be28a5 100644 --- a/src/Protocol/Protocol125.cpp +++ b/src/Protocol/Protocol125.cpp @@ -262,7 +262,7 @@ void cProtocol125::SendChunkData(int a_ChunkX, int a_ChunkZ, cChunkDataSerialize SendPreChunk(a_ChunkX, a_ChunkZ, true); // Send the chunk data: - AString Serialized = a_Serializer.Serialize(cChunkDataSerializer::RELEASE_1_2_5); + AString Serialized = a_Serializer.Serialize(cChunkDataSerializer::RELEASE_1_2_5, a_ChunkX, a_ChunkZ); WriteByte(PACKET_MAP_CHUNK); WriteInt (a_ChunkX); WriteInt (a_ChunkZ); |