diff options
author | Mattes D <github@xoft.cz> | 2014-11-18 08:52:48 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-11-18 08:52:48 +0100 |
commit | 9ece37e8f169f56ae670a02b9753cf12823d2df7 (patch) | |
tree | 00818f6c27413756b63be957faec29f4334a3ba4 /src/World.h | |
parent | Fixed a wrong assert in cClientHandle::SetViewDistance(). (diff) | |
parent | Use cLuaState's stack trace. (diff) | |
download | cuberite-9ece37e8f169f56ae670a02b9753cf12823d2df7.tar cuberite-9ece37e8f169f56ae670a02b9753cf12823d2df7.tar.gz cuberite-9ece37e8f169f56ae670a02b9753cf12823d2df7.tar.bz2 cuberite-9ece37e8f169f56ae670a02b9753cf12823d2df7.tar.lz cuberite-9ece37e8f169f56ae670a02b9753cf12823d2df7.tar.xz cuberite-9ece37e8f169f56ae670a02b9753cf12823d2df7.tar.zst cuberite-9ece37e8f169f56ae670a02b9753cf12823d2df7.zip |
Diffstat (limited to 'src/World.h')
-rw-r--r-- | src/World.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/World.h b/src/World.h index 03d99c538..fe57b0789 100644 --- a/src/World.h +++ b/src/World.h @@ -378,11 +378,8 @@ public: /** Marks the chunk as failed-to-load: */ void ChunkLoadFailed(int a_ChunkX, int a_ChunkZ); - /** Sets the sign text, asking plugins for permission first. a_Player is the player who this change belongs to, may be nullptr. Returns true if sign text changed. Same as UpdateSign() */ + /** Sets the sign text, asking plugins for permission first. a_Player is the player who this change belongs to, may be nullptr. Returns true if sign text changed. */ bool SetSignLines(int a_BlockX, int a_BlockY, int a_BlockZ, const AString & a_Line1, const AString & a_Line2, const AString & a_Line3, const AString & a_Line4, cPlayer * a_Player = nullptr); // Exported in ManualBindings.cpp - - /** Sets the sign text, asking plugins for permission first. a_Player is the player who this change belongs to, may be nullptr. Returns true if sign text changed. Same as SetSignLines() */ - bool UpdateSign(int a_X, int a_Y, int a_Z, const AString & a_Line1, const AString & a_Line2, const AString & a_Line3, const AString & a_Line4, cPlayer * a_Player = nullptr); // Exported in ManualBindings.cpp /** Sets the command block command. Returns true if command changed. */ bool SetCommandBlockCommand(int a_BlockX, int a_BlockY, int a_BlockZ, const AString & a_Command); // tolua_export |