Merge pull request #258 from alexguirre/fix-hashed-ydd

Fix .ydd export/import with unsolved hashes
This commit is contained in:
dexyfex
2024-07-25 19:50:17 +10:00
committed by GitHub
Unverified
2 changed files with 2 additions and 8 deletions
@@ -5847,7 +5847,7 @@ namespace CodeWalker.GameFiles
var d = new Drawable();
d.ReadXml(inode, ddsfolder);
drawables.Add(d);
drawablehashes.Add(JenkHash.GenHash(d.Name));//TODO: check this!
drawablehashes.Add(XmlMeta.GetHash(d.Name));
}
}