Fix barlines showing up in the osu!mania editor's timeline

This commit is contained in:
Dean Herbert 2021-03-25 16:30:31 +09:00
parent 41cf261286
commit 8d4ff867bf

View File

@ -268,6 +268,9 @@ namespace osu.Game.Screens.Edit.Compose.Components
private void addBlueprintFor(HitObject hitObject)
{
if (hitObject is IBarLine)
return;
if (blueprintMap.ContainsKey(hitObject))
return;