Fix pair lookup

* Fixes incorrect lookup where the server would try to pair a user with another user outside the current users area.
This commit is contained in:
Salanto 2022-05-26 17:13:50 +02:00
parent 87c898fa26
commit c1451b6b15

View File

@ -813,7 +813,8 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
QString l_other_emote = "0";
QString l_other_offset = "0";
QString l_other_flip = "0";
for (AOClient* l_client : qAsConst(server->m_clients)) {
for (int l_client_id : area->joinedIDs()) {
AOClient* l_client = server->getClientByID(l_client_id);
if (l_client->m_pairing_with == m_char_id
&& l_other_charid != m_char_id
&& l_client->m_char_id == m_pairing_with