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:
@@ -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);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user