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

Update HT mod multiplier to match stable better

This commit is contained in:
Dean Herbert 2023-12-13 15:51:26 +09:00
parent 996bc659e4
commit 4983845041
No known key found for this signature in database

View File

@ -32,9 +32,9 @@ namespace osu.Game.Rulesets.Mods
value -= 1;
if (SpeedChange.Value >= 1)
value /= 5;
return 1 + value;
return 1 + value / 5;
else
return 0.6 + value;
}
}