use iniswaps for pairing

This commit is contained in:
in1tiate 2021-03-30 22:06:02 -05:00
parent d9b4936861
commit ed3b043f40
2 changed files with 7 additions and 1 deletions

View File

@ -123,6 +123,11 @@ class AOClient : public QObject {
*/ */
QString current_char; 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. * @brief If true, the client is a logged-in moderator.
*/ */

View File

@ -404,6 +404,7 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
} }
qDebug() << "INI swap detected from " << getIpid(); qDebug() << "INI swap detected from " << getIpid();
} }
current_iniswap = incoming_args[2].toString();
args.append(incoming_args[2].toString()); args.append(incoming_args[2].toString());
// emote // emote
@ -513,7 +514,7 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
QString other_flip = "0"; QString other_flip = "0";
for (AOClient* client : server->clients) { for (AOClient* client : server->clients) {
if (client->pairing_with == char_id && other_charid != char_id && client->char_id == pairing_with) { 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_emote = client->emote;
other_offset = client->offset; other_offset = client->offset;
other_flip = client->flipping; other_flip = client->flipping;