1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-03 13:04:19 +08:00

Round OD limits to -15 and 15

This commit is contained in:
dnfd1
2025-10-09 05:13:17 -07:00
committed by GitHub
Unverified
parent fed04eb63b
commit faad1753a4
@@ -12,8 +12,8 @@ namespace osu.Game.Rulesets.Mania.Mods
Precision = 0.1f,
MinValue = 0,
MaxValue = 10,
ExtendedMaxValue = 13.61f,
ExtendedMinValue = -14.93f,
ExtendedMaxValue = 15,
ExtendedMinValue = -15,
ReadCurrentFromDifficulty = diff => diff.OverallDifficulty,
};
}