From ddffb038ac6c27d6a55a8a4fb2cf419bb78b47d4 Mon Sep 17 00:00:00 2001
From: Shon Ferguson <shonferg@users.sourceforge.net>
Date: Sat, 22 Jul 2006 17:29:25 +0000
Subject: [PATCH] Added code to ensure that bones have their flag set properly,
 even if they are not so in the original NIF file.

---
 obj/NiSkinInstance.cpp | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/obj/NiSkinInstance.cpp b/obj/NiSkinInstance.cpp
index 4633917f..8b8f8857 100644
--- a/obj/NiSkinInstance.cpp
+++ b/obj/NiSkinInstance.cpp
@@ -70,6 +70,11 @@ void NiSkinInstance::FixLinks( const vector<NiObjectRef> & objects, list<uint> &
 	if ( skeletonRoot != NULL ) {
 		skeletonRoot->AddSkin( this );
 	}
+
+	//Ensure that bones have the flag set properly
+	for ( uint i = 0; i < bones.size(); ++i ) {
+		bones[i]->SetSkinFlag(true);
+	}
 }
 
 list<NiObjectRef> NiSkinInstance::GetRefs() const {
-- 
GitLab