1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 17:02:57 +08:00

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 get
{ {
string drainRate = DrainRate.IsDefault ? "" : $"HP {DrainRate.Value.ToString()}"; 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 }; string[] settings = { drainRate, overallDifficulty };
// filter out empty strings so we don't have orphaned commas // filter out empty strings so we don't have orphaned commas