1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 03:59:52 +08:00

remove another ToString statement

This commit is contained in:
Liam DeVoe
2020-03-20 17:04:22 -04:00
Unverified
parent eab705a9b6
commit 4907fb8fd1
@@ -56,7 +56,7 @@ namespace osu.Game.Rulesets.Mods
{
get
{
string drainRate = DrainRate.IsDefault ? "" : $"HP {DrainRate.Value.ToString()}";
string drainRate = DrainRate.IsDefault ? "" : $"HP {DrainRate.Value}";
string overallDifficulty = OverallDifficulty.IsDefault ? "" : $"OD {OverallDifficulty.Value}";
string[] settings = { drainRate, overallDifficulty };