mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09: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:
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user