1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 20:05:29 +08:00

Add missing blank lines

This commit is contained in:
Dean Herbert 2021-07-02 17:51:54 +09:00
parent 0522500a57
commit ecb4982281

View File

@ -163,6 +163,7 @@ namespace osu.Game.Overlays.BeatmapSet
{
case MetadataType.Tags:
string[] tags = value.Split(" ");
for (int i = 0; i <= tags.Length - 1; i++)
{
textFlow.AddLink(tags[i], LinkAction.SearchBeatmapSet, tags[i], null, format);
@ -170,6 +171,7 @@ namespace osu.Game.Overlays.BeatmapSet
if (i != tags.Length - 1)
textFlow.AddText(" ", format);
}
break;
case MetadataType.Source: