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