diff options
author | madmaxoft <github@xoft.cz> | 2014-01-06 16:01:20 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-01-06 16:01:20 +0100 |
commit | 0d5a5cc990a9674bdf53000285076491fce1356f (patch) | |
tree | f509f99a171cb9a691f02b05e99c639966b8931e /src | |
parent | InfoDump: Removes indent and parses ParameterCombinations. (diff) | |
download | cuberite-0d5a5cc990a9674bdf53000285076491fce1356f.tar cuberite-0d5a5cc990a9674bdf53000285076491fce1356f.tar.gz cuberite-0d5a5cc990a9674bdf53000285076491fce1356f.tar.bz2 cuberite-0d5a5cc990a9674bdf53000285076491fce1356f.tar.lz cuberite-0d5a5cc990a9674bdf53000285076491fce1356f.tar.xz cuberite-0d5a5cc990a9674bdf53000285076491fce1356f.tar.zst cuberite-0d5a5cc990a9674bdf53000285076491fce1356f.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/World.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/World.h b/src/World.h index 67f1275c0..f90ddd90f 100644 --- a/src/World.h +++ b/src/World.h @@ -146,7 +146,7 @@ public: // Broadcast respective packets to all clients of the chunk where the event is taking place // (Please keep these alpha-sorted) void BroadcastAttachEntity (const cEntity & a_Entity, const cEntity * a_Vehicle); - void BroadcastBlockAction (int a_BlockX, int a_BlockY, int a_BlockZ, char a_Byte1, char a_Byte2, BLOCKTYPE a_BlockType, const cClientHandle * a_Exclude = NULL); + void BroadcastBlockAction (int a_BlockX, int a_BlockY, int a_BlockZ, char a_Byte1, char a_Byte2, BLOCKTYPE a_BlockType, const cClientHandle * a_Exclude = NULL); // tolua_export void BroadcastBlockBreakAnimation(int a_EntityID, int a_BlockX, int a_BlockY, int a_BlockZ, char a_Stage, const cClientHandle * a_Exclude = NULL); void BroadcastBlockEntity (int a_BlockX, int a_BlockY, int a_BlockZ, const cClientHandle * a_Exclude = NULL); ///< If there is a block entity at the specified coods, sends it to all clients except a_Exclude void BroadcastChat (const AString & a_Message, const cClientHandle * a_Exclude = NULL); // tolua_export |