1
0

Fixed ClientHandle:GetProtocolVersion returning wrong number.

This commit is contained in:
Mattes D
2017-01-23 17:42:52 +01:00
parent b872f9bef7
commit 6b0c795655
4 changed files with 7 additions and 13 deletions

View File

@@ -2201,7 +2201,7 @@ void cProtocol_1_8_0::HandlePacketLoginEncryptionResponse(cByteBuffer & a_ByteBu
}
StartEncryption(DecryptedKey);
m_Client->HandleLogin(4, m_Client->GetUsername());
m_Client->HandleLogin(m_Client->GetUsername());
}
@@ -2238,7 +2238,7 @@ void cProtocol_1_8_0::HandlePacketLoginStart(cByteBuffer & a_ByteBuffer)
return;
}
m_Client->HandleLogin(4, Username);
m_Client->HandleLogin(Username);
}