1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 21:27:24 +08:00

Rollback hold note placement when length is zero

This commit is contained in:
Dean Herbert 2021-04-22 14:59:57 +09:00
parent ebfe9cbe23
commit b37c5a8749

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;