1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 19:42:55 +08:00

Rename method to CalculateAllLegacyCombinations()

This commit is contained in:
Dan Balasescu 2022-03-31 15:09:06 +09:00
parent 32e55e7d78
commit 40b6f3ff0a

View File

@ -121,10 +121,10 @@ namespace osu.Game.Rulesets.Difficulty
/// Calculates the difficulty of the beatmap using all mod combinations applicable to the beatmap. /// Calculates the difficulty of the beatmap using all mod combinations applicable to the beatmap.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// This should only be used to compute difficulties for legacy mod combinations. /// This can only be used to compute difficulties for legacy mod combinations.
/// </remarks> /// </remarks>
/// <returns>A collection of structures describing the difficulty of the beatmap for each mod combination.</returns> /// <returns>A collection of structures describing the difficulty of the beatmap for each mod combination.</returns>
public IEnumerable<DifficultyAttributes> CalculateAll(CancellationToken cancellationToken = default) public IEnumerable<DifficultyAttributes> CalculateAllLegacyCombinations(CancellationToken cancellationToken = default)
{ {
var rulesetInstance = ruleset.CreateInstance(); var rulesetInstance = ruleset.CreateInstance();