1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 12:23:21 +08:00

Merge pull request #18116 from peppy/guest-is-system-user

Mark `GuestUser` as system user via `Id` for now
This commit is contained in:
Dan Balasescu 2022-05-06 18:13:03 +09:00 committed by GitHub
commit 09139ef9f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -458,7 +458,7 @@ namespace osu.Game.Online.API
public GuestUser()
{
Username = @"Guest";
Id = 1;
Id = SYSTEM_USER_ID;
}
}