mirror of https://github.com/ppy/osu
fix maps ending early
This commit is contained in:
parent
801fa39145
commit
4e8944de04
|
@ -41,6 +41,10 @@ protected override void SimulateAutoplay(Beatmap<OsuHitObject> beatmap)
|
||||||
// Ticks
|
// Ticks
|
||||||
foreach (var unused in slider.Ticks)
|
foreach (var unused in slider.Ticks)
|
||||||
AddJudgement(new OsuJudgement { Result = HitResult.Great });
|
AddJudgement(new OsuJudgement { Result = HitResult.Great });
|
||||||
|
|
||||||
|
//Bouncers
|
||||||
|
foreach (var unused in slider.Bouncers)
|
||||||
|
AddJudgement(new OsuJudgement { Result = HitResult.Great });
|
||||||
}
|
}
|
||||||
|
|
||||||
AddJudgement(new OsuJudgement { Result = HitResult.Great });
|
AddJudgement(new OsuJudgement { Result = HitResult.Great });
|
||||||
|
|
Loading…
Reference in New Issue