diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-07-05 23:11:06 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-07-05 23:11:06 +0200 |
commit | 37590c4bd8f293ca11dd5ad351f241b7636b67cb (patch) | |
tree | 3e416cc25dd94ae3e4864d9a541b0752a1cab5ac /source/ClientHandle.cpp | |
parent | Fixed 1.6.1's movement speed (diff) | |
download | cuberite-37590c4bd8f293ca11dd5ad351f241b7636b67cb.tar cuberite-37590c4bd8f293ca11dd5ad351f241b7636b67cb.tar.gz cuberite-37590c4bd8f293ca11dd5ad351f241b7636b67cb.tar.bz2 cuberite-37590c4bd8f293ca11dd5ad351f241b7636b67cb.tar.lz cuberite-37590c4bd8f293ca11dd5ad351f241b7636b67cb.tar.xz cuberite-37590c4bd8f293ca11dd5ad351f241b7636b67cb.tar.zst cuberite-37590c4bd8f293ca11dd5ad351f241b7636b67cb.zip |
Diffstat (limited to 'source/ClientHandle.cpp')
-rw-r--r-- | source/ClientHandle.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/source/ClientHandle.cpp b/source/ClientHandle.cpp index 138209a73..4d4f40745 100644 --- a/source/ClientHandle.cpp +++ b/source/ClientHandle.cpp @@ -1200,6 +1200,19 @@ void cClientHandle::HandleEntityAction(int a_EntityID, char a_ActionID) +void cClientHandle::HandleUnmount(void) +{ + if (m_Player == NULL) + { + return; + } + m_Player->Detach(); +} + + + + + void cClientHandle::SendData(const char * a_Data, int a_Size) { { |