diff options
author | Gargaj <gargaj@conspiracy.hu> | 2015-12-01 23:12:44 +0100 |
---|---|---|
committer | Gargaj <gargaj@conspiracy.hu> | 2015-12-13 13:27:38 +0100 |
commit | f9008a4860dc9af9ca2e2ceb643064745269dcec (patch) | |
tree | cf8f3e6ed33c7dc5e98baa6a530683749ae40e51 /src/Chunk.h | |
parent | Merge pull request #2737 from Gargaj/snowgolem (diff) | |
download | cuberite-f9008a4860dc9af9ca2e2ceb643064745269dcec.tar cuberite-f9008a4860dc9af9ca2e2ceb643064745269dcec.tar.gz cuberite-f9008a4860dc9af9ca2e2ceb643064745269dcec.tar.bz2 cuberite-f9008a4860dc9af9ca2e2ceb643064745269dcec.tar.lz cuberite-f9008a4860dc9af9ca2e2ceb643064745269dcec.tar.xz cuberite-f9008a4860dc9af9ca2e2ceb643064745269dcec.tar.zst cuberite-f9008a4860dc9af9ca2e2ceb643064745269dcec.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Chunk.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Chunk.h b/src/Chunk.h index ca818a378..a382f3e17 100644 --- a/src/Chunk.h +++ b/src/Chunk.h @@ -317,7 +317,9 @@ public: /** Retrieves the test on the sign at the specified coords; returns false if there's no sign at those coords, true if found */ bool GetSignLines (int a_BlockX, int a_BlockY, int a_BlockZ, AString & a_Line1, AString & a_Line2, AString & a_Line3, AString & a_Line4); // Lua-accessible - void UseBlockEntity(cPlayer * a_Player, int a_X, int a_Y, int a_Z); // [x, y, z] in world block coords + /** Use block entity on coordinate. + returns true if the use was successful, return false to use the block as a "normal" block */ + bool UseBlockEntity(cPlayer * a_Player, int a_X, int a_Y, int a_Z); // [x, y, z] in world block coords void CalculateHeightmap(const BLOCKTYPE * a_BlockTypes); |