feat(net): implement more of ClientConnection::Connect

This commit is contained in:
fallenoak 2025-10-01 23:17:00 -05:00
parent 71cc05e4dd
commit a226ec7f76
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -153,7 +153,11 @@ void ClientConnection::Connect() {
this->m_errorCode = 7; this->m_errorCode = 7;
this->m_statusComplete = 0; this->m_statusComplete = 0;
// TODO // TODO LogConnectionStatus(this->m_statusCop, this->m_errorCode, 1)
if (this->m_connected) {
this->Complete(1, 5);
}
ClientServices::LoginConnection()->GetRealmList(); ClientServices::LoginConnection()->GetRealmList();
} }