diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2020-07-29 00:39:55 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@outlook.com> | 2020-08-02 16:52:06 +0200 |
commit | fd5191854df621402cfe1203daceb68851c88af7 (patch) | |
tree | 42c85d35e600cff359aaa18b70624c9d0a80fb34 /src/Chunk.cpp | |
parent | Ensure updating relatives calls the correct base case (diff) | |
download | cuberite-fd5191854df621402cfe1203daceb68851c88af7.tar cuberite-fd5191854df621402cfe1203daceb68851c88af7.tar.gz cuberite-fd5191854df621402cfe1203daceb68851c88af7.tar.bz2 cuberite-fd5191854df621402cfe1203daceb68851c88af7.tar.lz cuberite-fd5191854df621402cfe1203daceb68851c88af7.tar.xz cuberite-fd5191854df621402cfe1203daceb68851c88af7.tar.zst cuberite-fd5191854df621402cfe1203daceb68851c88af7.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Chunk.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Chunk.cpp b/src/Chunk.cpp index fb37ce3b3..9544899f7 100644 --- a/src/Chunk.cpp +++ b/src/Chunk.cpp @@ -1314,6 +1314,10 @@ void cChunk::SetBlock(Vector3i a_RelPos, BLOCKTYPE a_BlockType, NIBBLETYPE a_Blo m_ToTickBlocks.push_back(a_RelPos); QueueTickBlockNeighbors(a_RelPos); + // TODO: use relative coordinates, cChunk reference + // Wake up the simulators for this block: + GetWorld()->GetSimulatorManager()->WakeUp(RelativeToAbsolute(a_RelPos), this); + // If there was a block entity, remove it: cBlockEntity * BlockEntity = GetBlockEntityRel(a_RelPos); if (BlockEntity != nullptr) |