1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 14:02:55 +08:00

Merge pull request #12178 from peppy/fix-mania-editor-barline-mutability

Fix barlines showing up in the osu!mania editor's timeline
This commit is contained in:
Dan Balasescu 2021-03-25 17:08:03 +09:00 committed by GitHub
commit aca3cd85c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;