diff --git a/src/bounce/cloth/spring_force.cpp b/src/bounce/cloth/spring_force.cpp index 3e68424..723b1ac 100644 --- a/src/bounce/cloth/spring_force.cpp +++ b/src/bounce/cloth/spring_force.cpp @@ -77,7 +77,7 @@ void b3SpringForce::Apply(const b3ClothSolverData* data) float32 L = b3Length(dx); - if (L >= m_L0) + if (L > m_L0) { // Apply tension b3Vec3 n = dx / L;