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

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
{
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 };