1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:47:24 +08:00

noticed a bug with double applying historicaldecay

This commit is contained in:
Xexxar 2021-08-19 15:05:39 +00:00
parent 7b70d41a93
commit b44e6f634d

View File

@ -20,7 +20,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
private const double pi_over_4 = Math.PI / 4;
private const double pi_over_2 = Math.PI / 2;
private const double rhythmMultiplier = 2.5;
private const double rhythmMultiplier = 2.0;
private const int HistoryTimeMax = 3000; // 3 seconds of calculatingRhythmBonus max.
private double skillMultiplier => 1375;
@ -101,7 +101,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
if (previousIslandSize == islandSize) // repeated island size (ex: triplet -> triplet)
effectiveRatio *= 0.25;
rhythmComplexitySum += effectiveRatio * currHistoricalDecay;
rhythmComplexitySum += effectiveRatio;
previousIslandSize = islandSize; // log the last island size.