1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-05 09:42:54 +08:00

removed display attributes

This commit is contained in:
Givikap120 2024-07-18 19:44:50 +03:00
parent 9cdd224237
commit 07dd324922

View File

@ -39,8 +39,6 @@ namespace osu.Game.Rulesets.Osu.Difficulty
yield return new PerformanceDisplayAttribute(nameof(Speed), "Speed", Speed);
yield return new PerformanceDisplayAttribute(nameof(Accuracy), "Accuracy", Accuracy);
yield return new PerformanceDisplayAttribute(nameof(Flashlight), "Flashlight Bonus", Flashlight);
yield return new PerformanceDisplayAttribute(nameof(Deviation), "Estimated UR", Deviation * 10);
yield return new PerformanceDisplayAttribute(nameof(SpeedDeviation), "Estimated UR (speed)", SpeedDeviation * 10);
}
}
}