summaryrefslogtreecommitdiffstats
path: root/src/ChunkMap.cpp
diff options
context:
space:
mode:
authorworktycho <work.tycho@gmail.com>2015-06-07 21:45:47 +0200
committerworktycho <work.tycho@gmail.com>2015-06-07 21:45:47 +0200
commitadfbc42c021e1bcfcb355933c0fd784306ce0e18 (patch)
tree57deef6f15be95c6f1f1e27186a9f7ea8a0e2cf6 /src/ChunkMap.cpp
parentMerge pull request #2210 from nounoursheureux/bucket-craft (diff)
downloadcuberite-adfbc42c021e1bcfcb355933c0fd784306ce0e18.tar
cuberite-adfbc42c021e1bcfcb355933c0fd784306ce0e18.tar.gz
cuberite-adfbc42c021e1bcfcb355933c0fd784306ce0e18.tar.bz2
cuberite-adfbc42c021e1bcfcb355933c0fd784306ce0e18.tar.lz
cuberite-adfbc42c021e1bcfcb355933c0fd784306ce0e18.tar.xz
cuberite-adfbc42c021e1bcfcb355933c0fd784306ce0e18.tar.zst
cuberite-adfbc42c021e1bcfcb355933c0fd784306ce0e18.zip
Diffstat (limited to 'src/ChunkMap.cpp')
-rw-r--r--src/ChunkMap.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ChunkMap.cpp b/src/ChunkMap.cpp
index 4db73971c..2f38e4cd6 100644
--- a/src/ChunkMap.cpp
+++ b/src/ChunkMap.cpp
@@ -409,6 +409,22 @@ 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);