diff options
Diffstat (limited to 'src/ChunkSender.cpp')
-rw-r--r-- | src/ChunkSender.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ChunkSender.cpp b/src/ChunkSender.cpp index ddcd3b534..60f9d8c68 100644 --- a/src/ChunkSender.cpp +++ b/src/ChunkSender.cpp @@ -257,7 +257,7 @@ void cChunkSender::SendChunk(int a_ChunkX, int a_ChunkZ, std::unordered_set<cCli { return; } - cChunkDataSerializer Data(m_BlockTypes, m_BlockMetas, m_BlockLight, m_BlockSkyLight, m_BiomeMap, m_World.GetDimension()); + cChunkDataSerializer Data(m_Data, m_BiomeMap, m_World.GetDimension()); for (const auto client : a_Clients) { @@ -271,6 +271,7 @@ void cChunkSender::SendChunk(int a_ChunkX, int a_ChunkZ, std::unordered_set<cCli } // for itr - m_Packets[] } + m_Data.Clear(); m_BlockEntities.clear(); // TODO: Send entity spawn packets |