1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-06 09:42:55 +08:00

Fix notes not being added to list

This commit is contained in:
Dan Balasescu 2022-08-15 21:54:23 +09:00
parent 4d4ee05981
commit c03e47317a

View File

@ -86,11 +86,12 @@ namespace osu.Game.Rulesets.Taiko.Difficulty.Preprocessing
rimHitObjects.Add(this); rimHitObjects.Add(this);
monoDifficultyHitObjects = rimHitObjects; monoDifficultyHitObjects = rimHitObjects;
break; break;
}
default: if (hitObject is Hit)
NoteIndex = noteObjects.Count; {
noteObjects.Add(this); NoteIndex = noteObjects.Count;
break; noteObjects.Add(this);
} }
} }