diff --git a/src/obj/NiNode.cpp b/src/obj/NiNode.cpp index 8b134e09151a750a5b9204591e9f5cd5f095f1c3..01407852b7b1688408aaa00611a442dbecc0f732 100644 --- a/src/obj/NiNode.cpp +++ b/src/obj/NiNode.cpp @@ -228,11 +228,6 @@ void NiNode::RemoveChild( Ref<NiAVObject> obj ) { //Search child list for the one to remove for ( vector< NiAVObjectRef >::iterator it = children.begin(); it != children.end(); ) { if ( *it == obj ) { - //Ensure that this child is not a skin influence - NiNodeRef niNode = DynamicCast<NiNode>((*it)); - if ( niNode != NULL && niNode->IsSkinInfluence() == true ) { - throw runtime_error("You cannot remove a node child that is a skin influence. Detatch the skin first."); - } (*it)->SetParent(NULL); it = children.erase( it ); } else {