summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2025-08-07 11:59:51 +0800
committerErik Kundiman <erik@megapahit.org>2025-08-07 11:59:51 +0800
commit2eeb6c956e36151cad52dd653530f6be995c5bf7 (patch)
treea9dc93a7f6ecf527b68940d049ad72d6678a05bd
parent2516f0229c84795d8427a2c223ef4081e443c81b (diff)
Don't show self arrivals/departures
-rw-r--r--indra/newview/llvoavatar.cpp4
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())