diff options
Diffstat (limited to '')
-rw-r--r-- | source/ClientHandle.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/ClientHandle.cpp b/source/ClientHandle.cpp index bae06713b..efe4f9c9f 100644 --- a/source/ClientHandle.cpp +++ b/source/ClientHandle.cpp @@ -575,6 +575,12 @@ void cClientHandle::HandleLeftClick(int a_BlockX, int a_BlockY, int a_BlockZ, ch return; } + case DIG_STATUS_CANCELLED: + { + // Block breaking cancelled by player + return; + } + default: { ASSERT(!"Unhandled DIG_STATUS"); |