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

Read flag name from file

This commit is contained in:
Dean Herbert 2018-11-04 21:14:16 +09:00
parent 54a02ee2d7
commit 89a1414c63

View File

@ -51,7 +51,8 @@ namespace osu.Game.Tournament.Screens.Drawings.Components
teams.Add(new TournamentTeam
{
FullName = split[1].Trim(),
Acronym = split.Length >= 3 ? split[2].Trim() : null
Acronym = split.Length >= 3 ? split[2].Trim() : null,
FlagName = split[0].Trim()
});
}
}