summaryrefslogtreecommitdiffstats
path: root/source/World.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-09-15 21:47:56 +0200
committermadmaxoft <github@xoft.cz>2013-09-15 21:47:56 +0200
commitf8947ce18e21d24561b4d275eb55ee6cd44a5ab3 (patch)
tree7641e1e64f6e7911161afe8be82098024acee437 /source/World.h
parentFixed tigerw's leftovers. (diff)
downloadcuberite-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 '')
-rw-r--r--source/World.h4
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);