Fix blank video heuristic for legacy map import to include upper-case 'X'

This commit is contained in:
Oliver Brakmann
2016-06-19 20:11:05 +02:00
parent 4c5d5be583
commit e08ba5eaee

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)
{