From 545b13c3fb72a9e4f10bbcee9f3fbda7bf58e6d0 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 25 Nov 2025 16:45:52 +0900 Subject: [PATCH] Show self in online users I don't see a reason to hide self. I kinda expect to be able to see that I'm online. --- osu.Game/Online/Metadata/OnlineMetadataClient.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/osu.Game/Online/Metadata/OnlineMetadataClient.cs b/osu.Game/Online/Metadata/OnlineMetadataClient.cs index 75b0187388..052b742beb 100644 --- a/osu.Game/Online/Metadata/OnlineMetadataClient.cs +++ b/osu.Game/Online/Metadata/OnlineMetadataClient.cs @@ -235,15 +235,13 @@ namespace osu.Game.Online.Metadata { if (userId == api.LocalUser.Value.OnlineID) localUserPresence = presence.Value; - else - userPresences[userId] = presence.Value; + userPresences[userId] = presence.Value; } else { if (userId == api.LocalUser.Value.OnlineID) localUserPresence = default; - else - userPresences.Remove(userId); + userPresences.Remove(userId); } });