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

View File

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