From c1451b6b15b0e345fa56790d0cf8f5005680e1b9 Mon Sep 17 00:00:00 2001 From: Salanto <62221668+Salanto@users.noreply.github.com> Date: Thu, 26 May 2022 17:13:50 +0200 Subject: [PATCH] Fix pair lookup * Fixes incorrect lookup where the server would try to pair a user with another user outside the current users area. --- core/src/packets.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/packets.cpp b/core/src/packets.cpp index 7f3067c..fc1b228 100644 --- a/core/src/packets.cpp +++ b/core/src/packets.cpp @@ -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