Mark GuestUser as system user via Id for now

Should resolve https://github.com/ppy/osu/issues/18105.

Checking through usages, it doesn't immediately look like this will
regress any other scenarios.
This commit is contained in:
Dean Herbert 2022-05-06 17:32:55 +09:00
parent 35e307672b
commit 319867f73c

View File

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