mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 01:02:55 +08:00
remove extra parentheses
This commit is contained in:
parent
6a63ba1bb8
commit
55568ee6a5
@ -31,6 +31,6 @@ namespace osu.Game.Rulesets.Mods
|
||||
Precision = 0.01,
|
||||
};
|
||||
|
||||
public override string SettingDescription => SpeedChange.IsDefault ? "" : $" ({SpeedChange.Value}x)";
|
||||
public override string SettingDescription => SpeedChange.IsDefault ? "" : $"{SpeedChange.Value}x";
|
||||
}
|
||||
}
|
||||
|
@ -31,6 +31,6 @@ namespace osu.Game.Rulesets.Mods
|
||||
Precision = 0.01,
|
||||
};
|
||||
|
||||
public override string SettingDescription => SpeedChange.IsDefault ? "" : $" ({SpeedChange.Value}x)";
|
||||
public override string SettingDescription => SpeedChange.IsDefault ? "" : $"{SpeedChange.Value}x";
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user