mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 17:47:29 +08:00
Fix when flashlight shrinking takes place
This commit is contained in:
parent
407b104116
commit
a4e9c7711c
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user