mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 08:49:59 +09:00
remove another ToString statement
This commit is contained in:
@ -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 };
|
||||||
|
Reference in New Issue
Block a user