mirror of
https://github.com/ppy/osu
synced 2025-01-31 18:32:14 +00:00
remove another ToString statement
This commit is contained in:
parent
eab705a9b6
commit
4907fb8fd1
@ -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 };
|
||||||
|
Loading…
Reference in New Issue
Block a user