summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockStems.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-12-20 15:50:46 +0100
committermadmaxoft <github@xoft.cz>2013-12-20 15:50:46 +0100
commitb19d7656663237c1dd23935f7d37f0444f2b63fb (patch)
tree1828d1b5c537d374a754c11ba3acc400db0df25c /src/Blocks/BlockStems.h
parentFixed missing parenthesis. (diff)
downloadcuberite-b19d7656663237c1dd23935f7d37f0444f2b63fb.tar
cuberite-b19d7656663237c1dd23935f7d37f0444f2b63fb.tar.gz
cuberite-b19d7656663237c1dd23935f7d37f0444f2b63fb.tar.bz2
cuberite-b19d7656663237c1dd23935f7d37f0444f2b63fb.tar.lz
cuberite-b19d7656663237c1dd23935f7d37f0444f2b63fb.tar.xz
cuberite-b19d7656663237c1dd23935f7d37f0444f2b63fb.tar.zst
cuberite-b19d7656663237c1dd23935f7d37f0444f2b63fb.zip
Diffstat (limited to 'src/Blocks/BlockStems.h')
-rw-r--r--src/Blocks/BlockStems.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Blocks/BlockStems.h b/src/Blocks/BlockStems.h
index c2dff62cf..d860639a5 100644
--- a/src/Blocks/BlockStems.h
+++ b/src/Blocks/BlockStems.h
@@ -32,7 +32,7 @@ public:
// Grow the produce:
int BlockX = a_RelX + a_Chunk.GetPosX() * cChunkDef::Width;
int BlockZ = a_RelZ + a_Chunk.GetPosZ() * cChunkDef::Width;
- a_Chunk.GetWorld()->GrowMelonPumpkin(BlockX, a_RelY, a_RelZ, m_BlockType);
+ a_Chunk.GetWorld()->GrowMelonPumpkin(BlockX, a_RelY, BlockZ, m_BlockType);
}
else
{