Mark UserID free on regular disconnect

* Fixes userID inflation bug where it would incorrectly mark freed IDs as still used.
This commit is contained in:
Salanto 2022-06-10 09:23:59 +02:00 committed by Rosemary Witchaven
parent d39f93926f
commit 20be237daf
2 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,6 @@ void AOClient::clientDisconnected()
if (l_updateLocks)
arup(ARUPType::LOCKED, true);
arup(ARUPType::CM, true);
emit clientSuccessfullyDisconnected(m_id);
}

View File

@ -609,6 +609,7 @@ void Server::hookupAOClient(AOClient *client)
connect(client, &AOClient::logBan, logger, &ULogger::logBan);
connect(client, &AOClient::logKick, logger, &ULogger::logKick);
connect(client, &AOClient::logModcall, logger, &ULogger::logModcall);
connect(client, &AOClient::clientSuccessfullyDisconnected, this, &Server::markIDFree);
}
void Server::increasePlayerCount()