diff options
author | madmaxoft <github@xoft.cz> | 2013-09-15 21:47:56 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-09-15 21:47:56 +0200 |
commit | f8947ce18e21d24561b4d275eb55ee6cd44a5ab3 (patch) | |
tree | 7641e1e64f6e7911161afe8be82098024acee437 /source/World.h | |
parent | Fixed tigerw's leftovers. (diff) | |
download | cuberite-f8947ce18e21d24561b4d275eb55ee6cd44a5ab3.tar cuberite-f8947ce18e21d24561b4d275eb55ee6cd44a5ab3.tar.gz cuberite-f8947ce18e21d24561b4d275eb55ee6cd44a5ab3.tar.bz2 cuberite-f8947ce18e21d24561b4d275eb55ee6cd44a5ab3.tar.lz cuberite-f8947ce18e21d24561b4d275eb55ee6cd44a5ab3.tar.xz cuberite-f8947ce18e21d24561b4d275eb55ee6cd44a5ab3.tar.zst cuberite-f8947ce18e21d24561b4d275eb55ee6cd44a5ab3.zip |
Diffstat (limited to 'source/World.h')
-rw-r--r-- | source/World.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/World.h b/source/World.h index 16ef6b3ce..7ed0e57a3 100644 --- a/source/World.h +++ b/source/World.h @@ -443,10 +443,10 @@ public: bool DoWithFurnaceAt(int a_BlockX, int a_BlockY, int a_BlockZ, cFurnaceCallback & a_Callback); // Exported in ManualBindings.cpp
/// 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); // tolua_export
+ bool GetSignLines (int a_BlockX, int a_BlockY, int a_BlockZ, AString & a_Line1, AString & a_Line2, AString & a_Line3, AString & a_Line4); // Exported in ManualBindings.cpp
/// a_Player is using block entity at [x, y, z], handle that:
- void UseBlockEntity(cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ) {m_ChunkMap->UseBlockEntity(a_Player, a_BlockX, a_BlockY, a_BlockZ); }
+ void UseBlockEntity(cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ) {m_ChunkMap->UseBlockEntity(a_Player, a_BlockX, a_BlockY, a_BlockZ); } // tolua_export
/// Calls the callback for the chunk specified, with ChunkMapCS locked; returns false if the chunk doesn't exist, otherwise returns the same value as the callback
bool DoWithChunk(int a_ChunkX, int a_ChunkZ, cChunkCallback & a_Callback);
|