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

View File

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