diff options
Diffstat (limited to 'source/Protocol.h')
-rw-r--r-- | source/Protocol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Protocol.h b/source/Protocol.h index 2b6bdd561..f3e688afb 100644 --- a/source/Protocol.h +++ b/source/Protocol.h @@ -41,7 +41,7 @@ public: virtual void DataReceived(const char * a_Data, int a_Size) = 0;
// Sending stuff to clients:
- virtual void SendBlockAction (int a_BlockX, int a_BlockY, int a_BlockZ, char a_Byte1, char a_Byte2) = 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 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;
|