diff options
Diffstat (limited to 'source/ClientHandle.cpp')
-rw-r--r-- | source/ClientHandle.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source/ClientHandle.cpp b/source/ClientHandle.cpp index fde80a083..2cb508b81 100644 --- a/source/ClientHandle.cpp +++ b/source/ClientHandle.cpp @@ -1453,6 +1453,17 @@ void cClientHandle::SendEntLook(const cEntity & a_Entity) +void cClientHandle::SendEntVelocity(const cEntity & a_Entity) +{ + ASSERT(a_Entity.GetUniqueID() != m_Player->GetUniqueID()); // Must not send for self + + m_Protocol->SendEntVelocity(a_Entity); +} + + + + + void cClientHandle::SendEntHeadLook(const cEntity & a_Entity) { ASSERT(a_Entity.GetUniqueID() != m_Player->GetUniqueID()); // Must not send for self |