Merge pull request #43 from AttorneyOnline/iniswap-pair
Fix pairing while iniswapped
This commit is contained in:
commit
3ca57ff54a
@ -123,6 +123,13 @@ class AOClient : public QObject {
|
|||||||
*/
|
*/
|
||||||
QString current_char;
|
QString current_char;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief If true, the client is a logged-in moderator.
|
* @brief If true, the client is a logged-in moderator.
|
||||||
*/
|
*/
|
||||||
|
@ -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
|
||||||
@ -516,7 +517,7 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
|
|||||||
&& other_charid != char_id
|
&& other_charid != char_id
|
||||||
&& client->char_id == pairing_with
|
&& client->char_id == pairing_with
|
||||||
&& client->pos == pos) {
|
&& client->pos == pos) {
|
||||||
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;
|
||||||
|
Loading…
Reference in New Issue
Block a user