diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2015-06-06 11:55:12 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2015-06-06 11:55:12 +0200 |
commit | f36acb683594daff5af3971dcbe3c3a171628b78 (patch) | |
tree | a8d1d3d5c0eeff2e6fbae9ac9d2dc34699a660ca /src/ChunkMap.cpp | |
parent | Merge pull request #2205 from birkett/master (diff) | |
parent | Fix iterating (diff) | |
download | cuberite-f36acb683594daff5af3971dcbe3c3a171628b78.tar cuberite-f36acb683594daff5af3971dcbe3c3a171628b78.tar.gz cuberite-f36acb683594daff5af3971dcbe3c3a171628b78.tar.bz2 cuberite-f36acb683594daff5af3971dcbe3c3a171628b78.tar.lz cuberite-f36acb683594daff5af3971dcbe3c3a171628b78.tar.xz cuberite-f36acb683594daff5af3971dcbe3c3a171628b78.tar.zst cuberite-f36acb683594daff5af3971dcbe3c3a171628b78.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ChunkMap.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/ChunkMap.cpp b/src/ChunkMap.cpp index 2f38e4cd6..4db73971c 100644 --- a/src/ChunkMap.cpp +++ b/src/ChunkMap.cpp @@ -409,22 +409,6 @@ void cChunkMap::BroadcastBlockEntity(int a_BlockX, int a_BlockY, int a_BlockZ, c -void cChunkMap::BroadcastChunkData(int a_ChunkX, int a_ChunkZ, cChunkDataSerializer & a_Serializer, const cClientHandle * a_Exclude) -{ - cCSLock Lock(m_CSLayers); - cChunkPtr Chunk = GetChunkNoGen(a_ChunkX, a_ChunkZ); - if (Chunk == nullptr) - { - return; - } - // It's perfectly legal to broadcast packets even to invalid chunks! - Chunk->BroadcastChunkData(a_Serializer, a_Exclude); -} - - - - - void cChunkMap::BroadcastCollectEntity(const cEntity & a_Entity, const cPlayer & a_Player, const cClientHandle * a_Exclude) { cCSLock Lock(m_CSLayers); |