1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 14:42:56 +08:00

Only show star on HR

This commit is contained in:
Dean Herbert 2019-11-24 01:45:21 +09:00
parent 326a8f62eb
commit 244177880e

View File

@ -197,7 +197,7 @@ namespace osu.Game.Tournament.Components
stats = new (string heading, string content)[]
{
("CS", $"{beatmap.BaseDifficulty.CircleSize:0.#}{hardRockExtra}"),
("AR", $"{ar:0.#}{srExtra}"),
("AR", $"{ar:0.#}{hardRockExtra}"),
("OD", $"{beatmap.BaseDifficulty.OverallDifficulty:0.#}{hardRockExtra}"),
};
break;
@ -215,7 +215,7 @@ namespace osu.Game.Tournament.Components
stats = new (string heading, string content)[]
{
("CS", $"{beatmap.BaseDifficulty.CircleSize:0.#}{hardRockExtra}"),
("AR", $"{ar:0.#}{srExtra}"),
("AR", $"{ar:0.#}"),
};
break;
}