mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
enforce precision for ModDifficultyAdjust and derived classes
This commit is contained in:
@ -36,8 +36,8 @@ namespace osu.Game.Rulesets.Catch.Mods
|
||||
{
|
||||
get
|
||||
{
|
||||
string circleSize = CircleSize.IsDefault ? string.Empty : $"CS {CircleSize.Value}";
|
||||
string approachRate = ApproachRate.IsDefault ? string.Empty : $"AR {ApproachRate.Value}";
|
||||
string circleSize = CircleSize.IsDefault ? string.Empty : $"CS {CircleSize.Value:0.#}";
|
||||
string approachRate = ApproachRate.IsDefault ? string.Empty : $"AR {ApproachRate.Value:0.#}";
|
||||
|
||||
return string.Join(", ", new[]
|
||||
{
|
||||
|
Reference in New Issue
Block a user