Fix regression causing new combos to once again not be respected

This commit is contained in:
Dean Herbert
2018-06-26 20:13:55 +09:00
parent f7f17bab78
commit 1a8aa6eab1
2 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,11 @@ namespace osu.Game.Rulesets.Catch.Beatmaps
int index = 0;
foreach (var obj in Beatmap.HitObjects.OfType<CatchHitObject>())
{
obj.IndexInBeatmap = index++;
if (obj.LastInCombo && obj.NestedHitObjects.LastOrDefault() is IHasComboInformation lastNested)
lastNested.LastInCombo = true;
}
}
public const int RNG_SEED = 1337;