diff --git a/interface/src/Avatar.cpp b/interface/src/Avatar.cpp index 6583af5484..fe49bd7cb8 100644 --- a/interface/src/Avatar.cpp +++ b/interface/src/Avatar.cpp @@ -1252,7 +1252,7 @@ void Avatar::updateBodySprings(float deltaTime) { // Check for a large repositioning, and re-initialize body springs if this has happened const float BEYOND_BODY_SPRING_RANGE = 2.f; if (glm::length(_position - _joint[AVATAR_JOINT_PELVIS].springyPosition) > BEYOND_BODY_SPRING_RANGE) { - initializeBodySprings(); + initializeBodySprings(); } for (int b = 0; b < NUM_AVATAR_JOINTS; b++) { glm::vec3 springVector(_joint[b].springyPosition);