Skip to content

Commit

Permalink
Merge branch 'estimation-removal' into dropped-tail-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Finadoggie authored Mar 22, 2024
2 parents 4db6f28 + 12afa8d commit eb30b4a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion osu.Game.Rulesets.Osu/Difficulty/OsuPerformanceCalculator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@ protected override PerformanceAttributes CreatePerformanceAttributes(ScoreInfo s
countMeh = score.Statistics.GetValueOrDefault(HitResult.Meh);
countMiss = score.Statistics.GetValueOrDefault(HitResult.Miss);
countSliderEndsDropped = score.Statistics.GetValueOrDefault(HitResult.SmallTickMiss);
effectiveMissCount = calculateEffectiveMissCount(osuAttributes);

if (!score.Mods.Any(h => h is OsuModClassic cl && cl.NoSliderHeadAccuracy.Value))
effectiveMissCount = countMiss;
else
effectiveMissCount = calculateEffectiveMissCount(osuAttributes);

double multiplier = PERFORMANCE_BASE_MULTIPLIER;

Expand Down

0 comments on commit eb30b4a

Please sign in to comment.