From 93edfe896ea60245989ef213c876db04f6362f6e Mon Sep 17 00:00:00 2001 From: fallenoak Date: Fri, 10 Oct 2025 19:52:31 -0500 Subject: [PATCH] feat(net): implement remainder of WowConnection::DoDisconnect --- src/net/connection/WowConnection.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/net/connection/WowConnection.cpp b/src/net/connection/WowConnection.cpp index ceea964..cae9d13 100644 --- a/src/net/connection/WowConnection.cpp +++ b/src/net/connection/WowConnection.cpp @@ -343,8 +343,7 @@ void WowConnection::DoDisconnect() { this->m_lock.Leave(); if (this->m_response && this->m_sock >= 0) { - // TODO - // this->m_response->Vfunc4(this, OsGetAsyncTimeMsPrecise()); + this->m_response->WCDisconnected(this, OsGetAsyncTimeMsPrecise(), &this->m_peer); } this->m_lock.Enter();