fix more bullshit

This commit is contained in:
rootdarkarchon
2024-03-30 00:57:23 +01:00
parent f25f2cb861
commit 04e705b261
2 changed files with 7 additions and 6 deletions

View File

@@ -46,11 +46,9 @@ public sealed class XivDataAnalyzer
outputIndices[skeletonName] = new();
for (ushort boneIdx = 0; boneIdx < curBones; boneIdx++)
{
var boneName = handle->HavokSkeleton->Bones[boneIdx].Name.String;
if (boneName == null) continue;
outputIndices[skeletonName].Add(boneIdx);
outputIndices[skeletonName].Add((ushort)(boneIdx + 1));
}
i++;
}