feat(net): implement GruntLogin::Logoff

This commit is contained in:
fallenoak 2025-09-30 21:23:05 -05:00
parent cb986335f6
commit ecc43fe40b
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -125,7 +125,11 @@ void GruntLogin::Init(LoginResponse* loginResponse) {
}
void GruntLogin::Logoff() {
// TODO
if (!this->m_loggedOn) {
return;
}
this->m_clientLink->Disconnect();
}
void GruntLogin::Logon(const char* loginServer, const char* loginPortal) {