From ed3b043f40b2a2b09ea01193a20935e79af5eff4 Mon Sep 17 00:00:00 2001 From: in1tiate Date: Tue, 30 Mar 2021 22:06:02 -0500 Subject: [PATCH 1/2] use iniswaps for pairing --- include/aoclient.h | 5 +++++ src/packets.cpp | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/include/aoclient.h b/include/aoclient.h index effbfcf..069ccf0 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -123,6 +123,11 @@ class AOClient : public QObject { */ QString current_char; + /** + * @brief The internal name of the character the client is iniswapped to. + */ + QString current_iniswap; + /** * @brief If true, the client is a logged-in moderator. */ diff --git a/src/packets.cpp b/src/packets.cpp index 80e89ce..8c2465f 100644 --- a/src/packets.cpp +++ b/src/packets.cpp @@ -404,6 +404,7 @@ AOPacket AOClient::validateIcPacket(AOPacket packet) } qDebug() << "INI swap detected from " << getIpid(); } + current_iniswap = incoming_args[2].toString(); args.append(incoming_args[2].toString()); // emote @@ -513,7 +514,7 @@ AOPacket AOClient::validateIcPacket(AOPacket packet) QString other_flip = "0"; for (AOClient* client : server->clients) { if (client->pairing_with == char_id && other_charid != char_id && client->char_id == pairing_with) { - other_name = server->characters.at(other_charid); + other_name = client->current_iniswap; other_emote = client->emote; other_offset = client->offset; other_flip = client->flipping; From bb103d009ea3ff54f9eee29633b6c3344934ad8b Mon Sep 17 00:00:00 2001 From: in1tiate Date: Thu, 1 Apr 2021 13:12:20 -0500 Subject: [PATCH 2/2] dox --- include/aoclient.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/aoclient.h b/include/aoclient.h index 069ccf0..214189c 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -125,6 +125,8 @@ class AOClient : public QObject { /** * @brief The internal name of the character the client is iniswapped to. + * + * @note This will be the same as current_char if the client is not iniswapped. */ QString current_iniswap;