Merge pull request #11485 from obrakmann/fix11472_X.vqa

Fix blank video heuristic for legacy map import to include upper-case 'X'
This commit is contained in:
abcdefg30
2016-06-19 20:40:27 +02:00
committed by GitHub

View File

@@ -172,7 +172,7 @@ namespace OpenRA.Mods.Common.UtilityCommands
var videos = new List<MiniYamlNode>();
foreach (var s in file.GetSection(section))
{
if (s.Value != "x" && s.Value != "<none>")
if (s.Value != "x" && s.Value != "X" && s.Value != "<none>")
{
switch (s.Key)
{