diff --git a/osu.Game.Rulesets.Osu/Difficulty/OsuPerformanceAttributes.cs b/osu.Game.Rulesets.Osu/Difficulty/OsuPerformanceAttributes.cs index 542be51b6d..d3867837d4 100644 --- a/osu.Game.Rulesets.Osu/Difficulty/OsuPerformanceAttributes.cs +++ b/osu.Game.Rulesets.Osu/Difficulty/OsuPerformanceAttributes.cs @@ -21,8 +21,8 @@ namespace osu.Game.Rulesets.Osu.Difficulty [JsonProperty("flashlight")] public double Flashlight { get; set; } - [JsonProperty("cognition")] - public double Cognition { get; set; } + [JsonProperty("reading")] + public double Reading { get; set; } [JsonProperty("effective_miss_count")] public double EffectiveMissCount { get; set; } @@ -35,7 +35,8 @@ namespace osu.Game.Rulesets.Osu.Difficulty yield return new PerformanceDisplayAttribute(nameof(Aim), "Aim", Aim); yield return new PerformanceDisplayAttribute(nameof(Speed), "Speed", Speed); yield return new PerformanceDisplayAttribute(nameof(Accuracy), "Accuracy", Accuracy); - yield return new PerformanceDisplayAttribute(nameof(Cognition), "Cognition", Cognition); + yield return new PerformanceDisplayAttribute(nameof(Reading), "Reading", Reading); + yield return new PerformanceDisplayAttribute(nameof(Flashlight), "Flashlight Bonus", Flashlight); } } } diff --git a/osu.Game.Rulesets.Osu/Difficulty/OsuPerformanceCalculator.cs b/osu.Game.Rulesets.Osu/Difficulty/OsuPerformanceCalculator.cs index 1166ccf03d..f04dfb9b5c 100644 --- a/osu.Game.Rulesets.Osu/Difficulty/OsuPerformanceCalculator.cs +++ b/osu.Game.Rulesets.Osu/Difficulty/OsuPerformanceCalculator.cs @@ -116,7 +116,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty Speed = speedValue, Accuracy = accuracyValue, Flashlight = visualFlashlightValue, - Cognition = visualCognitionValue, + Reading = visualCognitionValue, EffectiveMissCount = effectiveMissCount, Total = totalValue };