diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-08-07 11:59:51 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-08-07 11:59:51 +0800 |
commit | 2eeb6c956e36151cad52dd653530f6be995c5bf7 (patch) | |
tree | a9dc93a7f6ecf527b68940d049ad72d6678a05bd | |
parent | 2516f0229c84795d8427a2c223ef4081e443c81b (diff) |
Don't show self arrivals/departures
-rw-r--r-- | indra/newview/llvoavatar.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index f52d45b4b9..b8f8a4a88c 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -819,7 +819,7 @@ LLVOAvatar::~LLVOAvatar() sInstances.remove(this); static LLCachedControl<bool> show_arrival_departures(gSavedSettings, "IMShowArrivalsDepartures", false); - if (show_arrival_departures) + if (show_arrival_departures && !isSelf()) { auto full_name = getFullname(); if (!full_name.empty()) @@ -2583,7 +2583,7 @@ U32 LLVOAvatar::processUpdateMessage(LLMessageSystem *mesgsys, mDebugExistenceTimer.reset(); debugAvatarRezTime("AvatarRezArrivedNotification", "avatar arrived"); static LLCachedControl<bool> show_arrival_departures(gSavedSettings, "IMShowArrivalsDepartures", false); - if (show_arrival_departures) + if (show_arrival_departures && !isSelf()) { auto full_name = getFullname(); if (!full_name.empty()) |