1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:12:54 +08:00

Merge pull request #3939 from smoogipoo/fix-multi-mods

Fix plays with mods not submitting
This commit is contained in:
Dean Herbert 2018-12-27 22:20:10 +09:00 committed by GitHub
commit 12a93af156
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -301,7 +301,8 @@ namespace osu.Game.Screens.Play
{
Beatmap = Beatmap.Value.BeatmapInfo,
Ruleset = ruleset,
User = api.LocalUser.Value
Mods = Beatmap.Value.Mods.Value.ToArray(),
User = api.LocalUser.Value,
};
ScoreProcessor.PopulateScore(score);