mirror of
https://github.com/ppy/osu.git
synced 2025-03-15 14:47:18 +08:00
We shouldn't be adding null hitobjects.
This commit is contained in:
parent
0dd97c433f
commit
cf404b4bcf
@ -63,7 +63,12 @@ namespace osu.Game.Modes.Beatmaps
|
||||
|
||||
// Convert the hit object
|
||||
foreach (var obj in ConvertHitObject(original, beatmap))
|
||||
{
|
||||
if (obj == null)
|
||||
continue;
|
||||
|
||||
yield return obj;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
Loading…
x
Reference in New Issue
Block a user