1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-02 03:59:54 +08:00

Increase precision for the Accuracy Challenge mod (#37048)

1% is not precise enough to push accuracy to high enough levels.
Increasing the precision of the mod will make it more useful for a
larger amount of players who want to push their accuracy to their
absolute limits. This does come with the caveat that it's impossible to
achieve over 99.9% accuracy on many short maps, but I don't think it
really matters if high enough settings act like the Perfect mod on short
enough maps.

Co-authored-by: evill <jlkdsf;ajfklsjd@123.n>
This commit is contained in:
evill
2026-03-20 16:28:09 +02:00
committed by GitHub
Unverified
parent 43c53b5a8d
commit 22b8a8e57d
@@ -57,8 +57,8 @@ namespace osu.Game.Rulesets.Mods
public BindableNumber<double> MinimumAccuracy { get; } = new BindableDouble
{
MinValue = 0.60,
MaxValue = 0.99,
Precision = 0.01,
MaxValue = 0.999,
Precision = 0.001,
Default = 0.9,
Value = 0.9,
};