summaryrefslogtreecommitdiffstats
path: root/source/cClientHandle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/cClientHandle.cpp')
-rw-r--r--source/cClientHandle.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/cClientHandle.cpp b/source/cClientHandle.cpp
index 91ccb4005..70fa8e455 100644
--- a/source/cClientHandle.cpp
+++ b/source/cClientHandle.cpp
@@ -67,6 +67,7 @@
#include "packets/cPacket_PlayerListItem.h"
#include "packets/cPacket_NamedEntitySpawn.h"
#include "packets/cPacket_MapChunk.h"
+#include "packets/cPacket_PreChunk.h"
@@ -344,6 +345,7 @@ void cClientHandle::StreamChunks(void)
if ((RelX > VIEWDISTANCE) || (RelX < -VIEWDISTANCE) || (RelZ > VIEWDISTANCE) || (RelZ < -VIEWDISTANCE))
{
World->RemoveChunkClient(itr->m_ChunkX, itr->m_ChunkY, itr->m_ChunkZ, this);
+ Send( cPacket_PreChunk( itr->m_ChunkX, itr->m_ChunkZ, false ) );
itr = m_LoadedChunks.erase(itr);
}
else