diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-03-31 21:34:11 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-03-31 21:34:11 +0200 |
commit | ee07b7ae3ec9cd283fe61aede067e7fc9e4bcb49 (patch) | |
tree | 835fdf7b91233a3a9be1e5030fe5221f5f34ff54 /src/ClientHandle.h | |
parent | Fixed a few Y too high/low asserts (diff) | |
download | cuberite-ee07b7ae3ec9cd283fe61aede067e7fc9e4bcb49.tar cuberite-ee07b7ae3ec9cd283fe61aede067e7fc9e4bcb49.tar.gz cuberite-ee07b7ae3ec9cd283fe61aede067e7fc9e4bcb49.tar.bz2 cuberite-ee07b7ae3ec9cd283fe61aede067e7fc9e4bcb49.tar.lz cuberite-ee07b7ae3ec9cd283fe61aede067e7fc9e4bcb49.tar.xz cuberite-ee07b7ae3ec9cd283fe61aede067e7fc9e4bcb49.tar.zst cuberite-ee07b7ae3ec9cd283fe61aede067e7fc9e4bcb49.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ClientHandle.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ClientHandle.h b/src/ClientHandle.h index 8366caa16..5496e61a7 100644 --- a/src/ClientHandle.h +++ b/src/ClientHandle.h @@ -230,10 +230,10 @@ public: /** Called when the player moves into a different world; queues sreaming the new chunks */ void MoveToWorld(cWorld & a_World, bool a_SendRespawnPacket); +private: + /** Handles the block placing packet when it is a real block placement (not block-using, item-using or eating) */ void HandlePlaceBlock(int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ, cItemHandler & a_ItemHandler); - -private: /** The type used for storing the names of registered plugin channels. */ typedef std::set<AString> cChannels; |