summaryrefslogtreecommitdiffstats
path: root/source/cChunk.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-06-09 14:03:49 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-06-09 14:03:49 +0200
commitec61713221292914cd8e9e12bb77fac9e76e42eb (patch)
tree99acb7704519206e83e91235c78fa0f1ec22cd83 /source/cChunk.h
parentBonemeal is consumed in survival mode when used on growable blocks (diff)
downloadcuberite-ec61713221292914cd8e9e12bb77fac9e76e42eb.tar
cuberite-ec61713221292914cd8e9e12bb77fac9e76e42eb.tar.gz
cuberite-ec61713221292914cd8e9e12bb77fac9e76e42eb.tar.bz2
cuberite-ec61713221292914cd8e9e12bb77fac9e76e42eb.tar.lz
cuberite-ec61713221292914cd8e9e12bb77fac9e76e42eb.tar.xz
cuberite-ec61713221292914cd8e9e12bb77fac9e76e42eb.tar.zst
cuberite-ec61713221292914cd8e9e12bb77fac9e76e42eb.zip
Diffstat (limited to '')
-rw-r--r--source/cChunk.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/cChunk.h b/source/cChunk.h
index d5bc5675e..b92b62ff8 100644
--- a/source/cChunk.h
+++ b/source/cChunk.h
@@ -238,6 +238,9 @@ private:
/// Grows sugarcane by the specified number of blocks, but no more than 3 blocks high (used by both bonemeal and ticking)
void GrowSugarcane (int a_RelX, int a_RelY, int a_RelZ, int a_NumBlocks);
+ /// Grows cactus by the specified number of blocks, but no more than 3 blocks high (used by both bonemeal and ticking)
+ void GrowCactus (int a_RelX, int a_RelY, int a_RelZ, int a_NumBlocks);
+
/// Grows a melon or a pumpkin next to the block specified (assumed to be the stem)
void GrowMelonPumpkin(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_BlockType, MTRand & a_Random);