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

Merge pull request #28230 from tsunyoku/remove-extra-rhythm-previous-calls

Remove unneeded `Previous` calls from `RhythmEvaluator`
This commit is contained in:
Dan Balasescu 2024-05-20 04:37:14 +09:00 committed by GitHub
commit dedc2d2aa0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -66,10 +66,10 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Evaluators
}
else
{
if (current.Previous(i - 1).BaseObject is Slider) // bpm change is into slider, this is easy acc window
if (currObj.BaseObject is Slider) // bpm change is into slider, this is easy acc window
effectiveRatio *= 0.125;
if (current.Previous(i).BaseObject is Slider) // bpm change was from a slider, this is easier typically than circle -> circle
if (prevObj.BaseObject is Slider) // bpm change was from a slider, this is easier typically than circle -> circle
effectiveRatio *= 0.25;
if (previousIslandSize == islandSize) // repeated island size (ex: triplet -> triplet)