mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 17:43:05 +08:00
remove another ToString statement
This commit is contained in:
parent
a440d15620
commit
eab705a9b6
@ -57,7 +57,7 @@ namespace osu.Game.Rulesets.Mods
|
||||
get
|
||||
{
|
||||
string drainRate = DrainRate.IsDefault ? "" : $"HP {DrainRate.Value.ToString()}";
|
||||
string overallDifficulty = OverallDifficulty.IsDefault ? "" : $"OD {OverallDifficulty.Value.ToString()}";
|
||||
string overallDifficulty = OverallDifficulty.IsDefault ? "" : $"OD {OverallDifficulty.Value}";
|
||||
|
||||
string[] settings = { drainRate, overallDifficulty };
|
||||
// filter out empty strings so we don't have orphaned commas
|
||||
|
Loading…
Reference in New Issue
Block a user