1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-05 09:42:54 +08:00

fix sliderfactor on touch device

This commit is contained in:
TextAdventurer12 2024-11-30 11:36:04 +13:00
parent ea53e984bd
commit d01d01a44b

View File

@ -51,6 +51,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty
if (mods.Any(m => m is OsuModTouchDevice))
{
aimRating = Math.Pow(aimRating, 0.8);
aimRatingNoSliders = Math.Pow(aimRatingNoSliders, 0.8);
flashlightRating = Math.Pow(flashlightRating, 0.8);
}