diff options
author | Mattes D <github@xoft.cz> | 2015-03-21 16:11:57 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-03-21 16:11:57 +0100 |
commit | c3c29577a52a2e820cd389b88d52119e8136a7d8 (patch) | |
tree | f003f4317ac5eab11942a48c619ba1679986d70b /src/Protocol/Protocol.h | |
parent | Creeper: Fixed skeleton check. (diff) | |
download | cuberite-c3c29577a52a2e820cd389b88d52119e8136a7d8.tar cuberite-c3c29577a52a2e820cd389b88d52119e8136a7d8.tar.gz cuberite-c3c29577a52a2e820cd389b88d52119e8136a7d8.tar.bz2 cuberite-c3c29577a52a2e820cd389b88d52119e8136a7d8.tar.lz cuberite-c3c29577a52a2e820cd389b88d52119e8136a7d8.tar.xz cuberite-c3c29577a52a2e820cd389b88d52119e8136a7d8.tar.zst cuberite-c3c29577a52a2e820cd389b88d52119e8136a7d8.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Protocol/Protocol.h b/src/Protocol/Protocol.h index 02a8a52f6..652b5aa7e 100644 --- a/src/Protocol/Protocol.h +++ b/src/Protocol/Protocol.h @@ -59,7 +59,7 @@ public: // Sending stuff to clients (alphabetically sorted): virtual void SendAttachEntity (const cEntity & a_Entity, const cEntity * a_Vehicle) = 0; virtual void SendBlockAction (int a_BlockX, int a_BlockY, int a_BlockZ, char a_Byte1, char a_Byte2, BLOCKTYPE a_BlockType) = 0; - virtual void SendBlockBreakAnim (int a_EntityID, int a_BlockX, int a_BlockY, int a_BlockZ, char a_Stage) = 0; + virtual void SendBlockBreakAnim (UInt32 a_EntityID, int a_BlockX, int a_BlockY, int a_BlockZ, char a_Stage) = 0; virtual void SendBlockChange (int a_BlockX, int a_BlockY, int a_BlockZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta) = 0; virtual void SendBlockChanges (int a_ChunkX, int a_ChunkZ, const sSetBlockVector & a_Changes) = 0; virtual void SendChat (const AString & a_Message) = 0; |