diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-02-28 03:29:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-02-28 03:29:34 +0300 |
commit | 3e026f7efc76b0e6e76177d04c989432cb517b7a (patch) | |
tree | 82234ac42313d5826f2b15cfd9899cf66f38e0a3 | |
parent | c85d939d9b3f6c10288dc86ffa7811408e349657 (diff) | |
download | plus-3e026f7efc76b0e6e76177d04c989432cb517b7a.tar.gz plus-3e026f7efc76b0e6e76177d04c989432cb517b7a.tar.bz2 plus-3e026f7efc76b0e6e76177d04c989432cb517b7a.tar.xz plus-3e026f7efc76b0e6e76177d04c989432cb517b7a.zip |
Fix manaplus clients name highlight in evol server. Before was all highlighted.
-rw-r--r-- | src/being.cpp | 2 | ||||
-rw-r--r-- | src/gui/whoisonline.cpp | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/being.cpp b/src/being.cpp index b5f55592f..2d8bc042c 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -2525,7 +2525,6 @@ void Being::saveComment(const std::string &name, void Being::setState(Uint8 state) { - mAdvanced = true; bool shop = (state & FLAG_SHOP); bool away = (state & FLAG_AWAY); bool inactive = (state & FLAG_INACTIVE); @@ -2548,6 +2547,7 @@ void Being::setEmote(Uint8 emotion, int emote_time) if ((emotion & FLAG_SPECIAL) == FLAG_SPECIAL) { setState(emotion); + mAdvanced = true; } else { diff --git a/src/gui/whoisonline.cpp b/src/gui/whoisonline.cpp index 15c8a42c4..eba058bd7 100644 --- a/src/gui/whoisonline.cpp +++ b/src/gui/whoisonline.cpp @@ -738,7 +738,12 @@ void OnlinePlayer::setText(std::string color) Being *being = actorSpriteManager->findBeingByName( mNick, Being::PLAYER); if (being) + { being->setState(mStatus); + // for now highlight versions > 3 + if (mVersion > 3) + being->setAdvanced(true); + } } if (mLevel > 0) |