1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-13 05:22:54 +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);
monoDifficultyHitObjects = rimHitObjects;
break;
}
default:
NoteIndex = noteObjects.Count;
noteObjects.Add(this);
break;
if (hitObject is Hit)
{
NoteIndex = noteObjects.Count;
noteObjects.Add(this);
}
}