mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-22 15:02:54 +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);
|
||||
return GetXml(ynd, out filename);
|
||||
}
|
||||
else if (fnl.EndsWith(".ycd"))
|
||||
{
|
||||
YcdFile ycd = RpfFile.GetFile<YcdFile>(e, data);
|
||||
return GetXml(ycd, out filename);
|
||||
}
|
||||
filename = fn;
|
||||
return string.Empty;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user