1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 16:32:54 +08:00

Merge pull request #12527 from peppy/mania-fix-zero-length-hold-notes

Rollback hold note placement when length is zero
This commit is contained in:
Dan Balasescu 2021-04-22 18:48:32 +09:00 committed by GitHub
commit 162948425d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,7 +73,7 @@ namespace osu.Game.Rulesets.Mania.Edit.Blueprints
return;
base.OnMouseUp(e);
EndPlacement(true);
EndPlacement(HitObject.Duration > 0);
}
private double originalStartTime;