Update all cinema/autoplay mods to specify the system user ID

This commit is contained in:
Dean Herbert
2022-03-28 22:21:23 +09:00
parent a0692ce477
commit d2d88015e3
12 changed files with 84 additions and 12 deletions

View File

@ -16,7 +16,11 @@ namespace osu.Game.Rulesets.EmptyFreeform.Mods
{
ScoreInfo = new ScoreInfo
{
User = new APIUser { Username = "sample" },
User = new APIUser
{
Id = APIUser.SYSTEM_USER_ID,
Username = "sample"
},
},
Replay = new EmptyFreeformAutoGenerator(beatmap).Generate(),
};