diff options
author | worktycho <work.tycho@gmail.com> | 2015-07-01 11:39:46 +0200 |
---|---|---|
committer | worktycho <work.tycho@gmail.com> | 2015-07-01 11:39:46 +0200 |
commit | 11cf88b8722e55e5ab3e1775b62538e96575b600 (patch) | |
tree | 6b16a888c3abce218cd76a719312811a63f0e5f6 /src/Chunk.cpp | |
parent | APIDump: Fixed a forgotten comma. (diff) | |
parent | Added neighbor specification in the OnNeighborChanged() block callback. (diff) | |
download | cuberite-11cf88b8722e55e5ab3e1775b62538e96575b600.tar cuberite-11cf88b8722e55e5ab3e1775b62538e96575b600.tar.gz cuberite-11cf88b8722e55e5ab3e1775b62538e96575b600.tar.bz2 cuberite-11cf88b8722e55e5ab3e1775b62538e96575b600.tar.lz cuberite-11cf88b8722e55e5ab3e1775b62538e96575b600.tar.xz cuberite-11cf88b8722e55e5ab3e1775b62538e96575b600.tar.zst cuberite-11cf88b8722e55e5ab3e1775b62538e96575b600.zip |
Diffstat (limited to 'src/Chunk.cpp')
-rw-r--r-- | src/Chunk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Chunk.cpp b/src/Chunk.cpp index d9410dc8d..9dc453079 100644 --- a/src/Chunk.cpp +++ b/src/Chunk.cpp @@ -1037,7 +1037,7 @@ void cChunk::GrowMelonPumpkin(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_Bl VERIFY(UnboundedRelFastSetBlock(a_RelX + x, a_RelY, a_RelZ + z, ProduceType, Meta)); auto Absolute = RelativeToAbsolute(Vector3i{a_RelX + x, a_RelY, a_RelZ + z}, m_PosX, m_PosZ); cChunkInterface ChunkInterface(this->GetWorld()->GetChunkMap()); - cBlockHandler::NeighborChanged(ChunkInterface, Absolute.x, Absolute.y, Absolute.z); + cBlockHandler::NeighborChanged(ChunkInterface, Absolute.x, Absolute.y - 1, Absolute.z, BLOCK_FACE_YP); break; } } |