summaryrefslogtreecommitdiffstats
path: root/source/cWorld.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-06-09 15:00:14 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-06-09 15:00:14 +0200
commit8189487258df0490583b52322e357d7f7dfcb0e9 (patch)
tree3e5bf73b613da7a8a98b447982982f5573e1bd46 /source/cWorld.h
parentPlants growable by bonemeal are settable in the world.ini. Default matches vanilla MC. (diff)
downloadcuberite-8189487258df0490583b52322e357d7f7dfcb0e9.tar
cuberite-8189487258df0490583b52322e357d7f7dfcb0e9.tar.gz
cuberite-8189487258df0490583b52322e357d7f7dfcb0e9.tar.bz2
cuberite-8189487258df0490583b52322e357d7f7dfcb0e9.tar.lz
cuberite-8189487258df0490583b52322e357d7f7dfcb0e9.tar.xz
cuberite-8189487258df0490583b52322e357d7f7dfcb0e9.tar.zst
cuberite-8189487258df0490583b52322e357d7f7dfcb0e9.zip
Diffstat (limited to '')
-rw-r--r--source/cWorld.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/cWorld.h b/source/cWorld.h
index 79f904f54..70b3ad88e 100644
--- a/source/cWorld.h
+++ b/source/cWorld.h
@@ -313,6 +313,9 @@ public:
/// 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); // tolua_export
+ int GetMaxSugarcaneHeight(void) const { return m_MaxSugarcaneHeight; } // tolua_export
+ int GetMaxCactusHeight (void) const { return m_MaxCactusHeight; } // tolua_export
+
private:
friend class cRoot;