diff options
author | QUSpilPrgm <QUSpilPrgm@users.noreply.github.com> | 2016-05-29 22:10:35 +0200 |
---|---|---|
committer | QUSpilPrgm <QUSpilPrgm@users.noreply.github.com> | 2016-06-03 15:45:49 +0200 |
commit | f1192c6860fc209509a414beaa4bbeaf87cfcb8d (patch) | |
tree | d299b6e8cd24f087f8bf5047cde858d4bcedbcf5 /src/Chunk.h | |
parent | Update Dispensers and let them act more like in Vanilla (diff) | |
download | cuberite-f1192c6860fc209509a414beaa4bbeaf87cfcb8d.tar cuberite-f1192c6860fc209509a414beaa4bbeaf87cfcb8d.tar.gz cuberite-f1192c6860fc209509a414beaa4bbeaf87cfcb8d.tar.bz2 cuberite-f1192c6860fc209509a414beaa4bbeaf87cfcb8d.tar.lz cuberite-f1192c6860fc209509a414beaa4bbeaf87cfcb8d.tar.xz cuberite-f1192c6860fc209509a414beaa4bbeaf87cfcb8d.tar.zst cuberite-f1192c6860fc209509a414beaa4bbeaf87cfcb8d.zip |
Diffstat (limited to 'src/Chunk.h')
-rw-r--r-- | src/Chunk.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Chunk.h b/src/Chunk.h index f8bd9075d..162c8de96 100644 --- a/src/Chunk.h +++ b/src/Chunk.h @@ -586,6 +586,9 @@ private: /** Grows cactus by the specified number of blocks, but no more than 3 blocks high (used by both bonemeal and ticking); returns the amount of blocks the cactus grew inside this call */ int GrowCactus (int a_RelX, int a_RelY, int a_RelZ, int a_NumBlocks); + /** Grows a tall grass present at the block specified to a two tall grass; returns true if the grass grew */ + bool GrowTallGrass (int a_RelX, int a_RelY, int a_RelZ); + /** Grows a melon or a pumpkin next to the block specified (assumed to be the stem); returns true if the pumpkin or melon sucessfully grew */ bool GrowMelonPumpkin(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_BlockType, MTRand & a_Random); |