1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 14:50:54 +08:00

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.
This commit is contained in:
Dean Herbert
2025-11-25 16:45:52 +09:00
Unverified
parent f0f4e7c7a5
commit 545b13c3fb
@@ -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);
}
});