mirror of
https://github.com/ppy/osu.git
synced 2024-11-14 15:17:27 +08:00
Add inline documentation as to why classic mod is not ranked
See https://github.com/ppy/osu/pull/27149#issuecomment-1939509941.
This commit is contained in:
parent
207ad599d0
commit
9e9297bfb3
@ -19,5 +19,16 @@ namespace osu.Game.Rulesets.Mods
|
|||||||
public override LocalisableString Description => "Feeling nostalgic?";
|
public override LocalisableString Description => "Feeling nostalgic?";
|
||||||
|
|
||||||
public override ModType Type => ModType.Conversion;
|
public override ModType Type => ModType.Conversion;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Classic mods are not to be ranked yet due to compatibility and multiplier concerns.
|
||||||
|
/// Right now classic mods are considered, for leaderboard purposes, to be equal as scores set on osu-stable.
|
||||||
|
/// But this is not the case.
|
||||||
|
///
|
||||||
|
/// Some examples for things to resolve before even considering this:
|
||||||
|
/// - Hit windows differ (https://github.com/ppy/osu/issues/11311).
|
||||||
|
/// - Sliders always gives combo for slider end, even on miss (https://github.com/ppy/osu/issues/11769).
|
||||||
|
/// </summary>
|
||||||
|
public sealed override bool Ranked => false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user