diff options
author | madmaxoft <github@xoft.cz> | 2013-08-13 23:10:59 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-08-13 23:10:59 +0200 |
commit | b65a91dde33bc8c7c3e802e94d1862206a1b6a32 (patch) | |
tree | 951beb27f1999845c3a71e7398a5ee40634a58ed /source/World.h | |
parent | Updated the Core Lua files in MCServer project externals. (diff) | |
download | cuberite-b65a91dde33bc8c7c3e802e94d1862206a1b6a32.tar cuberite-b65a91dde33bc8c7c3e802e94d1862206a1b6a32.tar.gz cuberite-b65a91dde33bc8c7c3e802e94d1862206a1b6a32.tar.bz2 cuberite-b65a91dde33bc8c7c3e802e94d1862206a1b6a32.tar.lz cuberite-b65a91dde33bc8c7c3e802e94d1862206a1b6a32.tar.xz cuberite-b65a91dde33bc8c7c3e802e94d1862206a1b6a32.tar.zst cuberite-b65a91dde33bc8c7c3e802e94d1862206a1b6a32.zip |
Diffstat (limited to '')
-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 da59b12f6..2c04c4cc6 100644 --- a/source/World.h +++ b/source/World.h @@ -154,8 +154,8 @@ public: 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 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); + 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 void BroadcastChunkData (int a_ChunkX, int a_ChunkZ, cChunkDataSerializer & a_Serializer, const cClientHandle * a_Exclude = NULL); void BroadcastCollectPickup (const cPickup & a_Pickup, const cPlayer & a_Player, const cClientHandle * a_Exclude = NULL); void BroadcastDestroyEntity (const cEntity & a_Entity, const cClientHandle * a_Exclude = NULL); |