diff options
author | Richard Linden <none@none> | 2010-08-12 15:18:25 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-08-12 15:18:25 -0700 |
commit | 2c999688c4c792630865bd97c2b45ff886d9a26c (patch) | |
tree | b9023a63b784a66439f8b13452504c94dcd89e63 /indra/newview/llnearbychathandler.cpp | |
parent | 00e4fb0ac8431bda3705c218a548557cfca7e749 (diff) |
added remaining hints and fade in/fade out behavior
Diffstat (limited to 'indra/newview/llnearbychathandler.cpp')
-rw-r--r-- | indra/newview/llnearbychathandler.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llnearbychathandler.cpp b/indra/newview/llnearbychathandler.cpp index 31a59146d6..4011552112 100644 --- a/indra/newview/llnearbychathandler.cpp +++ b/indra/newview/llnearbychathandler.cpp @@ -350,7 +350,10 @@ void LLNearbyChatHandler::processChat(const LLChat& chat_msg, const LLSD &args) if(chat_msg.mSourceType == CHAT_SOURCE_AGENT && chat_msg.mFromID.notNull()) { LLRecentPeople::instance().add(chat_msg.mFromID); - LLFirstUse::otherAvatarChat(); + if (chat_msg.mFromID != gAgentID) + { + LLFirstUse::otherAvatarChatFirst(); + } } if(chat_msg.mText.empty()) |