1
0

finished #143 I believe

This commit is contained in:
Daniel O'Brien
2013-11-16 02:23:50 +11:00
parent 5e3614ce87
commit 04dff4882a
14 changed files with 45 additions and 16 deletions

View File

@@ -260,6 +260,9 @@ void cClientHandle::Authenticate(void)
// Send health
m_Player->SendHealth();
// Send experience
m_Player->SendExperience();
// Send gamemode (1.6.1 movementSpeed):
SendGameMode(m_Player->GetGameMode());
@@ -1873,9 +1876,9 @@ void cClientHandle::SendRespawn(void)
void cClientHandle::SendSetExperience(void)
void cClientHandle::SendExperience(void)
{
m_Protocol->SendSetExperience();
m_Protocol->SendExperience();
}