mirror of
https://github.com/ppy/osu.git
synced 2024-11-15 11:47:24 +08:00
use LargeTickHit instead of LargeTickMiss
LargeTickMiss appears to not be stored
This commit is contained in:
parent
6bcfed8963
commit
1337b7eb41
@ -52,7 +52,8 @@ namespace osu.Game.Rulesets.Osu.Difficulty
|
||||
else
|
||||
{
|
||||
countSliderEndsDropped = osuAttributes.SliderCount - score.Statistics.GetValueOrDefault(HitResult.SliderTailHit);
|
||||
countLargeTickMiss = score.Statistics.GetValueOrDefault(HitResult.LargeTickMiss);
|
||||
// Note: HitResult.LargeTickMiss is not stored within the API or in score dumps. Do not use it!
|
||||
countLargeTickMiss = score.MaximumStatistics.GetValueOrDefault(HitResult.LargeTickHit) - score.Statistics.GetValueOrDefault(HitResult.LargeTickHit);
|
||||
effectiveMissCount = countMiss;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user