diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-08 16:17:33 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-08 16:17:33 +0200 |
commit | 6d36a82e190525f895bc93588d2e81f220ab5f5b (patch) | |
tree | a56da114a27e23dc99369a3145983754f3609e25 /source/cChunkMap.h | |
parent | Simplify ifdef. Makes compiling possible on BSD (diff) | |
download | cuberite-6d36a82e190525f895bc93588d2e81f220ab5f5b.tar cuberite-6d36a82e190525f895bc93588d2e81f220ab5f5b.tar.gz cuberite-6d36a82e190525f895bc93588d2e81f220ab5f5b.tar.bz2 cuberite-6d36a82e190525f895bc93588d2e81f220ab5f5b.tar.lz cuberite-6d36a82e190525f895bc93588d2e81f220ab5f5b.tar.xz cuberite-6d36a82e190525f895bc93588d2e81f220ab5f5b.tar.zst cuberite-6d36a82e190525f895bc93588d2e81f220ab5f5b.zip |
Diffstat (limited to 'source/cChunkMap.h')
-rw-r--r-- | source/cChunkMap.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/cChunkMap.h b/source/cChunkMap.h index da5a5066f..69f0f3830 100644 --- a/source/cChunkMap.h +++ b/source/cChunkMap.h @@ -154,6 +154,9 @@ public: /// Grows a melon or a pumpkin next to the block specified (assumed to be the stem)
void GrowMelonPumpkin(int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, MTRand & a_Rand);
+ /// Grows a sugarcane present at the block specified by the amount of blocks specified, up to the max height of 3
+ void GrowSugarcane(int a_BlockX, int a_BlockY, int a_BlockZ, int a_NumBlocksToGrow);
+
/// Sets the blockticking to start at the specified block. Only one blocktick per chunk may be set, second call overwrites the first call
void SetNextBlockTick(int a_BlockX, int a_BlockY, int a_BlockZ);
|