diff --git a/src/obj/NiNode.cpp b/src/obj/NiNode.cpp
index b59bc028f8d04461880694c48b212aed79c5cf3e..603cf6217cbd399cd387ed47d482b2ecaeaf2643 100644
--- a/src/obj/NiNode.cpp
+++ b/src/obj/NiNode.cpp
@@ -66,8 +66,9 @@ void NiNode::AddChild( Ref<NiAVObject> obj ) {
 	}
 	obj->SetParent( this );
 	//Sometimes NiTriBasedGeom with skins can be siblings of NiNodes that
-	//represent joints for that same skin.  This is not allowed, so we have
-	//to prevent it by always adding NiTriBasedGeom to the begining of the child list.
+	//represent joints for that same skin.  When this is the case, NiTriBasedGeom
+	//must com first, so we enforce that by always adding NiTriBasedGeom to the
+	//begining of the child list.
 	NiTriBasedGeomRef niGeom = DynamicCast<NiTriBasedGeom>(obj);
 	if ( niGeom != NULL ) {
 		//This is a NiTriBasedGeom, so shift all children to the right