From be72757bdf59070037b19ce0e88e881089a2c712 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Wed, 8 Oct 2025 22:15:38 -0500 Subject: [PATCH] chore(net): inline call to Initiate --- src/net/connection/ClientConnection.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/net/connection/ClientConnection.cpp b/src/net/connection/ClientConnection.cpp index 99b4183..e0a74b0 100644 --- a/src/net/connection/ClientConnection.cpp +++ b/src/net/connection/ClientConnection.cpp @@ -92,12 +92,7 @@ void ClientConnection::GetCharacterList() { } void ClientConnection::GetRealmList() { - this->m_cleanup = nullptr; - this->m_statusCop = COP_GET_REALMS; - this->m_errorCode = 35; - this->m_statusComplete = 0; - - // TODO LogConnectionStatus(this->m_statusCop, this->m_errorCode, 1); + this->Initiate(COP_GET_REALMS, 35, nullptr); if (ClientServices::LoginConnection()->IsLoggedOn()) { ClientServices::LoginConnection()->GetRealmList();