1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-03 15:04:26 +08:00

Disallow tagging beatmaps when playing as convert

This commit is contained in:
Dean Herbert
2025-03-20 16:38:37 +09:00
Unverified
parent 5183078801
commit 51c4e073d1
@@ -238,6 +238,8 @@ namespace osu.Game.Screens.Ranking.Statistics
if (
// We may want to iterate on this condition
AchievedScore.Rank >= ScoreRank.C
// Tags are only relevant to the original ruleset of the map, so disallow tagging when playing as a convert.
&& AchievedScore.Ruleset.OnlineID == AchievedScore.BeatmapInfo!.Ruleset.OnlineID
)
{
yield return new StatisticItem("Tag the beatmap!", () => new UserTagControl(newScore.BeatmapInfo)