Don't open profile if it's Autoplay

This commit is contained in:
OctopuSSX
2020-03-20 14:26:26 +03:00
committed by GitHub
parent 549cec80d6
commit b813c0aff1

View File

@ -68,7 +68,7 @@ namespace osu.Game.Users.Drawables
if (!OpenOnClick.Value)
return;
if (user != null)
if (user != null && user.Id != 1)
game?.ShowUser(user.Id);
}