diff options
author | changyong guo <guo1487@163.com> | 2018-07-23 00:23:33 +0200 |
---|---|---|
committer | peterbell10 <peterbell10@live.co.uk> | 2018-07-23 00:23:33 +0200 |
commit | 3e802932a6797fc0f4768ebc61cf9ac4f498c7fb (patch) | |
tree | 18dc1b8ce84c3202034c859a3d775c8beb2b68be /src/ClientHandle.cpp | |
parent | cIsThread: Reset m_ShouldTerminate after the thread has stopped (#4258) (diff) | |
download | cuberite-3e802932a6797fc0f4768ebc61cf9ac4f498c7fb.tar cuberite-3e802932a6797fc0f4768ebc61cf9ac4f498c7fb.tar.gz cuberite-3e802932a6797fc0f4768ebc61cf9ac4f498c7fb.tar.bz2 cuberite-3e802932a6797fc0f4768ebc61cf9ac4f498c7fb.tar.lz cuberite-3e802932a6797fc0f4768ebc61cf9ac4f498c7fb.tar.xz cuberite-3e802932a6797fc0f4768ebc61cf9ac4f498c7fb.tar.zst cuberite-3e802932a6797fc0f4768ebc61cf9ac4f498c7fb.zip |
Diffstat (limited to 'src/ClientHandle.cpp')
-rw-r--r-- | src/ClientHandle.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp index bbcb64d33..9ae0b4adc 100644 --- a/src/ClientHandle.cpp +++ b/src/ClientHandle.cpp @@ -417,6 +417,9 @@ void cClientHandle::FinishAuthenticate(const AString & a_Name, const cUUID & a_U // Send experience m_Player->SendExperience(); + // Send hotbar active slot + m_Player->SendHotbarActiveSlot(); + // Send player list items SendPlayerListAddPlayer(*m_Player); cRoot::Get()->BroadcastPlayerListsAddPlayer(*m_Player); @@ -2635,6 +2638,15 @@ void cClientHandle::SendHealth(void) +void cClientHandle::SendHeldItemChange(int a_ItemIndex) +{ + m_Protocol->SendHeldItemChange(a_ItemIndex); +} + + + + + void cClientHandle::SendHideTitle(void) { m_Protocol->SendHideTitle(); |