remove another ToString statement

This commit is contained in:
Liam DeVoe
2020-03-20 17:00:36 -04:00
parent a440d15620
commit eab705a9b6

View File

@ -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