temporarily remove assertion

This commit is contained in:
David Rose 2007-01-23 22:20:28 +00:00
parent 972259b88e
commit 7f225df16d

View File

@ -805,7 +805,11 @@ void Character::
r_clear_joint_characters(PartGroup *part) {
if (part->is_of_type(CharacterJoint::get_class_type())) {
CharacterJoint *joint = DCAST(CharacterJoint, part);
nassertv(joint->get_character() == this || joint->get_character() == NULL);
// Whoops! We are not properly assigning the joint->_character
// node when we flatten characters! TODO: fix this.
// nassertv(joint->get_character() == this || joint->get_character() == NULL);
joint->set_character(NULL);
}