Skip to content

Commit 3e71923

Browse files
committed
- Fix infinite loop during skeleton resolution
1 parent 6471806 commit 3e71923

File tree

1 file changed

+1
-1
lines changed
  • xivModdingFramework/Models/FileTypes

1 file changed

+1
-1
lines changed

xivModdingFramework/Models/FileTypes/Sklb.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ private static async Task<string> GetExtraSkelbPath(XivDependencyRootInfo root,
298298
}
299299

300300
// Hair and face types have a race defined at root level.
301-
if ((type == Est.EstType.Face || type == Est.EstType.Hair) && race != XivRace.All_Races)
301+
if ((type == Est.EstType.Face || type == Est.EstType.Hair) && race == XivRace.All_Races)
302302
{
303303
var ret = new Dictionary<XivRace, ExtraSkeletonEntry>();
304304
race = XivRaces.GetXivRace(root.PrimaryId);

0 commit comments

Comments
 (0)