1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-06 12:03:20 +08:00

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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);
}