Merge remote-tracking branch 'origin/master' into mania-auto-generation-fixes

This commit is contained in:
smoogipoo
2017-11-29 18:42:17 +09:00
7 changed files with 36 additions and 10 deletions

View File

@ -26,7 +26,7 @@ namespace osu.Game.Rulesets.Mania.Replays
public override Replay Generate()
{
// Todo: Realistically this shouldn't be needed, but the first frame is skipped with the way replays are currently handled
Replay.Frames.Add(new ReplayFrame(-100000, null, null, ReplayButtonState.None));
Replay.Frames.Add(new ManiaReplayFrame(-100000, 0));
var pointGroups = generateActionPoints().GroupBy(a => a.Time).OrderBy(g => g.First().Time);