Perform all user profile displays using an IUser interface

This commit is contained in:
Dean Herbert
2021-11-05 13:53:00 +09:00
parent ba74dd93b2
commit b1f1cc0bf3
3 changed files with 10 additions and 18 deletions

View File

@ -66,7 +66,7 @@ namespace osu.Game.Users.Drawables
private void openProfile()
{
if (user?.Id > 1)
game?.ShowUser(user.Id);
game?.ShowUser(user);
}
private class ClickableArea : OsuClickableContainer