mirror of
https://github.com/ppy/osu.git
synced 2025-03-23 08:27:23 +08:00
Use empty string instead of null because issue template not accept null.
This commit is contained in:
parent
505ec800da
commit
a1a9238bd1
@ -72,7 +72,7 @@ namespace osu.Game.Rulesets.Edit.Checks
|
||||
if (edgeType == EdgeType.None)
|
||||
yield break;
|
||||
|
||||
string postfix = hitObject is IHasDuration ? edgeType.ToString().ToLowerInvariant() : null;
|
||||
string postfix = hitObject is IHasDuration ? edgeType.ToString().ToLowerInvariant() : string.Empty;
|
||||
|
||||
if (maxVolume <= muted_threshold)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user