1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 21:07:33 +08:00

Merge pull request #20358 from o-dasher/simplify-flashlight

Fix flashlight shrinking at >100x rather than starting from 100x
This commit is contained in:
Dean Herbert 2022-09-19 22:03:34 +09:00 committed by GitHub
commit cbb4845fa6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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