diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-05-11 11:56:15 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-05-11 11:56:15 +0200 |
commit | 5c9f89526aeca7b32014cd78e323f74baddf1e36 (patch) | |
tree | 0826014520f81a771a88463edda6ac90e639c1c2 /src | |
parent | Add block place/break distance check. (diff) | |
download | cuberite-5c9f89526aeca7b32014cd78e323f74baddf1e36.tar cuberite-5c9f89526aeca7b32014cd78e323f74baddf1e36.tar.gz cuberite-5c9f89526aeca7b32014cd78e323f74baddf1e36.tar.bz2 cuberite-5c9f89526aeca7b32014cd78e323f74baddf1e36.tar.lz cuberite-5c9f89526aeca7b32014cd78e323f74baddf1e36.tar.xz cuberite-5c9f89526aeca7b32014cd78e323f74baddf1e36.tar.zst cuberite-5c9f89526aeca7b32014cd78e323f74baddf1e36.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ClientHandle.cpp | 6 | ||||
-rw-r--r-- | src/ClientHandle.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp index d1962506d..9238418a4 100644 --- a/src/ClientHandle.cpp +++ b/src/ClientHandle.cpp @@ -878,7 +878,7 @@ void cClientHandle::HandleLeftClick(int a_BlockX, int a_BlockY, int a_BlockZ, eB case DIG_STATUS_CANCELLED: { // Block breaking cancelled by player - HandleBlockDigCancel(); + FinishDigAnimation(); return; } @@ -998,7 +998,7 @@ void cClientHandle::HandleBlockDigFinished(int a_BlockX, int a_BlockY, int a_Blo return; } - HandleBlockDigCancel(); + FinishDigAnimation(); cItemHandler * ItemHandler = cItemHandler::GetItemHandler(m_Player->GetEquippedItem()); @@ -1041,7 +1041,7 @@ void cClientHandle::HandleBlockDigFinished(int a_BlockX, int a_BlockY, int a_Blo -void cClientHandle::HandleBlockDigCancel() +void cClientHandle::FinishDigAnimation() { if ( !m_HasStartedDigging || // Hasn't received the DIG_STARTED packet diff --git a/src/ClientHandle.h b/src/ClientHandle.h index 03a716657..85d348eee 100644 --- a/src/ClientHandle.h +++ b/src/ClientHandle.h @@ -374,8 +374,8 @@ private: /** Handles the DIG_FINISHED dig packet: */ void HandleBlockDigFinished(int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace, BLOCKTYPE a_OldBlock, NIBBLETYPE a_OldMeta); - /** Handles the DIG_CANCELLED dig packet: */ - void HandleBlockDigCancel(); + /** The clients will receive a finished dig animation */ + void FinishDigAnimation(); /** Converts the protocol-formatted channel list (NUL-separated) into a proper string vector. */ AStringVector BreakApartPluginChannels(const AString & a_PluginChannels); |