1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 17:02:57 +08:00

Adjust flashliht scaling to match classic

This commit is contained in:
Dan Balasescu 2022-10-03 18:38:29 +09:00
parent 8598eb29f8
commit deae7cff60

View File

@ -151,9 +151,9 @@ namespace osu.Game.Rulesets.Mods
if (comboBasedSize)
{
if (combo >= 200)
size *= 0.8f;
size *= 0.625f;
else if (combo >= 100)
size *= 0.9f;
size *= 0.8125f;
}
return size;