mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
use N1 format instead of 0.#
This commit is contained in:
@ -57,8 +57,8 @@ namespace osu.Game.Rulesets.Mods
|
||||
{
|
||||
get
|
||||
{
|
||||
string drainRate = DrainRate.IsDefault ? string.Empty : $"HP {DrainRate.Value:0.#}";
|
||||
string overallDifficulty = OverallDifficulty.IsDefault ? string.Empty : $"OD {OverallDifficulty.Value:0.#}";
|
||||
string drainRate = DrainRate.IsDefault ? string.Empty : $"HP {DrainRate.Value:N1}";
|
||||
string overallDifficulty = OverallDifficulty.IsDefault ? string.Empty : $"OD {OverallDifficulty.Value:N1}";
|
||||
|
||||
return string.Join(", ", new[]
|
||||
{
|
||||
|
Reference in New Issue
Block a user