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

Adjust range further

This is not a great idea.
This commit is contained in:
Dean Herbert 2018-03-01 00:39:59 +09:00 committed by GitHub
parent e2f57ae346
commit b8ea4b11ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ namespace osu.Game.Beatmaps.ControlPoints
public double BeatLength
{
get => beatLength;
set => beatLength = MathHelper.Clamp(value, 100, 60000);
set => beatLength = MathHelper.Clamp(value, 6, 60000);
}
private double beatLength = 1000;