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

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