mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-26 08:52:52 +08:00
Bug fix for RPF explorer not exporting XML for YCDs
This commit is contained in:
parent
5a35688aed
commit
9c903c677b
@ -56,6 +56,11 @@ namespace CodeWalker.GameFiles
|
|||||||
YndFile ynd = RpfFile.GetFile<YndFile>(e, data);
|
YndFile ynd = RpfFile.GetFile<YndFile>(e, data);
|
||||||
return GetXml(ynd, out filename);
|
return GetXml(ynd, out filename);
|
||||||
}
|
}
|
||||||
|
else if (fnl.EndsWith(".ycd"))
|
||||||
|
{
|
||||||
|
YcdFile ycd = RpfFile.GetFile<YcdFile>(e, data);
|
||||||
|
return GetXml(ycd, out filename);
|
||||||
|
}
|
||||||
filename = fn;
|
filename = fn;
|
||||||
return string.Empty;
|
return string.Empty;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user