Merge pull request #17 from neos7/master

Little fix for some vanilla gtxd.meta
This commit is contained in:
dexyfex 2018-03-05 21:43:56 +11:00 committed by GitHub
commit 05ec5e5b76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,7 +59,15 @@ namespace CodeWalker.GameFiles
}
else if (entry.NameLower.EndsWith(".meta"))
{
//required for update\x64\dlcpacks\mpheist\dlc.rpf\common\data\gtxd.meta and update\x64\dlcpacks\mpluxe\dlc.rpf\common\data\gtxd.meta
string bom = Encoding.UTF8.GetString(Encoding.UTF8.GetPreamble());
string xml = Encoding.UTF8.GetString(data);
if (xml.StartsWith(bom, StringComparison.Ordinal))
{
xml = xml.Remove(0, bom.Length);
}
LoadMapParentTxds(xml);
Loaded = true;
}