diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-07 23:07:21 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-07 23:07:21 +0200 |
commit | 876014b8e8941f6de69f07e3b4cc354e9bdf3e57 (patch) | |
tree | f6fab0234d43774675f4a4d69b3c711b6aaafb33 /source/cWorld.h | |
parent | Nightbuild: bindings are automatically update before the build (diff) | |
download | cuberite-876014b8e8941f6de69f07e3b4cc354e9bdf3e57.tar cuberite-876014b8e8941f6de69f07e3b4cc354e9bdf3e57.tar.gz cuberite-876014b8e8941f6de69f07e3b4cc354e9bdf3e57.tar.bz2 cuberite-876014b8e8941f6de69f07e3b4cc354e9bdf3e57.tar.lz cuberite-876014b8e8941f6de69f07e3b4cc354e9bdf3e57.tar.xz cuberite-876014b8e8941f6de69f07e3b4cc354e9bdf3e57.tar.zst cuberite-876014b8e8941f6de69f07e3b4cc354e9bdf3e57.zip |
Diffstat (limited to '')
-rw-r--r-- | source/cWorld.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/cWorld.h b/source/cWorld.h index 0fca98771..85823f27e 100644 --- a/source/cWorld.h +++ b/source/cWorld.h @@ -243,6 +243,12 @@ public: void GrowTreeByBiome (int a_BlockX, int a_BlockY, int a_BlockZ); // tolua_export
void GrowTreeImage(const sSetBlockVector & a_Blocks);
+
+ /// Grows the plant at the specified block to its ripe stage (bonemeal used)
+ void GrowPlant(int a_BlockX, int a_BlockY, int a_BlockZ); // tolua_export
+
+ /// 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, char a_BlockType); // tolua_export
int GetBiomeAt (int a_BlockX, int a_BlockZ); // tolua_export
|