diff options
author | LogicParrot <LogicParrot@users.noreply.github.com> | 2016-08-28 11:42:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-28 11:42:34 +0200 |
commit | d5b3fbcadba903528e616af37354f1935ca8ea41 (patch) | |
tree | a9762d6da72a7ef48cba9417472a351691098e0c | |
parent | Fix breaking ice in survival not giving a water's source (#3356) (diff) | |
download | cuberite-d5b3fbcadba903528e616af37354f1935ca8ea41.tar cuberite-d5b3fbcadba903528e616af37354f1935ca8ea41.tar.gz cuberite-d5b3fbcadba903528e616af37354f1935ca8ea41.tar.bz2 cuberite-d5b3fbcadba903528e616af37354f1935ca8ea41.tar.lz cuberite-d5b3fbcadba903528e616af37354f1935ca8ea41.tar.xz cuberite-d5b3fbcadba903528e616af37354f1935ca8ea41.tar.zst cuberite-d5b3fbcadba903528e616af37354f1935ca8ea41.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ClientHandle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp index c44b8195b..882c7f283 100644 --- a/src/ClientHandle.cpp +++ b/src/ClientHandle.cpp @@ -1886,7 +1886,7 @@ void cClientHandle::RemoveFromWorld(void) } for (auto && Chunk : Chunks) { - m_Protocol->SendUnloadChunk(Chunk.m_ChunkX, Chunk.m_ChunkZ); + SendUnloadChunk(Chunk.m_ChunkX, Chunk.m_ChunkZ); } // for itr - Chunks[] // Here, we set last streamed values to bogus ones so everything is resent |