[DatFile] Add URL as valid item for RC

This commit is contained in:
Matt Nadareski
2016-10-21 15:37:34 -07:00
parent 5037c3c31f
commit 2946e0b785

View File

@@ -3404,6 +3404,11 @@ namespace SabreTools.Helper
break;
}
}
// If we have a URL
else if (line.ToLowerInvariant().StartsWith("url="))
{
Url = (String.IsNullOrEmpty(Url) ? line.Split('=')[1] : Url);
}
// If we have a comment
else if (line.ToLowerInvariant().StartsWith("comment="))
{