diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-05-25 14:46:34 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-05-25 14:46:34 +0200 |
commit | ee929793f09c431693e1bef7edd77213ba412f60 (patch) | |
tree | 566189dcea2b6cac9d3bd2958026b9ad9a264027 /src/ChunkMap.cpp | |
parent | Updated Core (diff) | |
download | cuberite-ee929793f09c431693e1bef7edd77213ba412f60.tar cuberite-ee929793f09c431693e1bef7edd77213ba412f60.tar.gz cuberite-ee929793f09c431693e1bef7edd77213ba412f60.tar.bz2 cuberite-ee929793f09c431693e1bef7edd77213ba412f60.tar.lz cuberite-ee929793f09c431693e1bef7edd77213ba412f60.tar.xz cuberite-ee929793f09c431693e1bef7edd77213ba412f60.tar.zst cuberite-ee929793f09c431693e1bef7edd77213ba412f60.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ChunkMap.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ChunkMap.cpp b/src/ChunkMap.cpp index d7164a6a5..3c87403ff 100644 --- a/src/ChunkMap.cpp +++ b/src/ChunkMap.cpp @@ -1255,7 +1255,7 @@ void cChunkMap::SetBlockMeta(int a_BlockX, int a_BlockY, int a_BlockZ, NIBBLETYP -void cChunkMap::SetBlock(cWorldInterface & a_WorldInterface, int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, BLOCKTYPE a_BlockMeta) +void cChunkMap::SetBlock(cWorldInterface & a_WorldInterface, int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, BLOCKTYPE a_BlockMeta, bool a_SendToClients) { cChunkInterface ChunkInterface(this); if (a_BlockType == E_BLOCK_AIR) @@ -1270,7 +1270,7 @@ void cChunkMap::SetBlock(cWorldInterface & a_WorldInterface, int a_BlockX, int a cChunkPtr Chunk = GetChunk( ChunkX, ZERO_CHUNK_Y, ChunkZ ); if ((Chunk != NULL) && Chunk->IsValid()) { - Chunk->SetBlock(X, Y, Z, a_BlockType, a_BlockMeta ); + Chunk->SetBlock(X, Y, Z, a_BlockType, a_BlockMeta, a_SendToClients); m_World->GetSimulatorManager()->WakeUp(a_BlockX, a_BlockY, a_BlockZ, Chunk); } BlockHandler(a_BlockType)->OnPlaced(ChunkInterface, a_WorldInterface, a_BlockX, a_BlockY, a_BlockZ, a_BlockType, a_BlockMeta); |