mirror of https://github.com/ppy/osu
Fix notes not being added to list
This commit is contained in:
parent
4d4ee05981
commit
c03e47317a
|
@ -86,11 +86,12 @@ public TaikoDifficultyHitObject(HitObject hitObject, HitObject lastObject, HitOb
|
|||
rimHitObjects.Add(this);
|
||||
monoDifficultyHitObjects = rimHitObjects;
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
NoteIndex = noteObjects.Count;
|
||||
noteObjects.Add(this);
|
||||
break;
|
||||
if (hitObject is Hit)
|
||||
{
|
||||
NoteIndex = noteObjects.Count;
|
||||
noteObjects.Add(this);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue