diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-29 23:02:39 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-29 23:02:39 +0200 |
commit | f1d62b77cd1f9eb31cf508ee5eb54e09b9ca10e5 (patch) | |
tree | c57d967bab26888ae83692ab09cbbc7fabbae6f5 /source/cClientHandle.h | |
parent | Added a check if torch is placed on the bottom face, temporarily fix the assert. (diff) | |
download | cuberite-f1d62b77cd1f9eb31cf508ee5eb54e09b9ca10e5.tar cuberite-f1d62b77cd1f9eb31cf508ee5eb54e09b9ca10e5.tar.gz cuberite-f1d62b77cd1f9eb31cf508ee5eb54e09b9ca10e5.tar.bz2 cuberite-f1d62b77cd1f9eb31cf508ee5eb54e09b9ca10e5.tar.lz cuberite-f1d62b77cd1f9eb31cf508ee5eb54e09b9ca10e5.tar.xz cuberite-f1d62b77cd1f9eb31cf508ee5eb54e09b9ca10e5.tar.zst cuberite-f1d62b77cd1f9eb31cf508ee5eb54e09b9ca10e5.zip |
Diffstat (limited to '')
-rw-r--r-- | source/cClientHandle.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/source/cClientHandle.h b/source/cClientHandle.h index ee3e8b1ee..3ae37c2e7 100644 --- a/source/cClientHandle.h +++ b/source/cClientHandle.h @@ -95,8 +95,8 @@ public: void SendTeleportEntity(const cEntity & a_Entity); void SendPlayerListItem(const cPlayer & a_Player, bool a_IsOnline); void SendPlayerPosition(void); - void SendRelEntMoveLook(const cEntity & a_Entity, char a_RelX, char a_RelY, char a_RelZ); - void SendRelEntMove (const cEntity & a_Entity, char a_RelX, char a_RelY, char a_RelZ); + void SendEntRelMoveLook(const cEntity & a_Entity, char a_RelX, char a_RelY, char a_RelZ); + void SendEntRelMove (const cEntity & a_Entity, char a_RelX, char a_RelY, char a_RelZ); void SendEntLook (const cEntity & a_Entity); void SendEntHeadLook (const cEntity & a_Entity); void SendBlockAction (int a_BlockX, int a_BlockY, int a_BlockZ, char a_Byte1, char a_Byte2); @@ -226,11 +226,6 @@ private: bool m_bKeepThreadGoing; - /* - /// Handles rclk with a dye; returns true if the dye is to be be consumed - bool HandleDyes(cPacket_BlockPlace * a_Packet); - */ - /// Returns true if the rate block interactions is within a reasonable limit (bot protection) bool CheckBlockInteractionsRate(void); |