remove another ToString statement

This commit is contained in:
Liam DeVoe 2020-03-20 17:04:22 -04:00
parent eab705a9b6
commit 4907fb8fd1

View File

@ -56,7 +56,7 @@ namespace osu.Game.Rulesets.Mods
{ {
get get
{ {
string drainRate = DrainRate.IsDefault ? "" : $"HP {DrainRate.Value.ToString()}"; string drainRate = DrainRate.IsDefault ? "" : $"HP {DrainRate.Value}";
string overallDifficulty = OverallDifficulty.IsDefault ? "" : $"OD {OverallDifficulty.Value}"; string overallDifficulty = OverallDifficulty.IsDefault ? "" : $"OD {OverallDifficulty.Value}";
string[] settings = { drainRate, overallDifficulty }; string[] settings = { drainRate, overallDifficulty };