diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-11-15 15:16:52 +0100 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-11-15 15:16:52 +0100 |
commit | 78fb7896313f2074fa814309901e30d4a4f218e2 (patch) | |
tree | efb2cee4c5e3defe04a05cae0e2f673ba21f7b90 /src/World.h | |
parent | APIDump: Fixed example cCompositeChat URL (diff) | |
download | cuberite-78fb7896313f2074fa814309901e30d4a4f218e2.tar cuberite-78fb7896313f2074fa814309901e30d4a4f218e2.tar.gz cuberite-78fb7896313f2074fa814309901e30d4a4f218e2.tar.bz2 cuberite-78fb7896313f2074fa814309901e30d4a4f218e2.tar.lz cuberite-78fb7896313f2074fa814309901e30d4a4f218e2.tar.xz cuberite-78fb7896313f2074fa814309901e30d4a4f218e2.tar.zst cuberite-78fb7896313f2074fa814309901e30d4a4f218e2.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 1a9f60a5c..b209f71a7 100644 --- a/src/World.h +++ b/src/World.h @@ -377,11 +377,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 |