routes
[carveJwlIkooP6JGAAIwe30JlM.git] / character.h
index 3858f24b9b3382ae8261cc524095fe8fde1118c1..df05295611492ecb41cbafafd266bf9623830c50 100644 (file)
@@ -913,9 +913,6 @@ static void character_debug_ragdoll( struct character *ch )
 
 static void character_ragdoll_iter( struct character *ch )
 {
-   /* TODO: Lots of the RB functions unimplemented here currently */
-
-   return;
    rb_solver_reset();
 
    for( int i=0; i<PART_COUNT; i++ )
@@ -933,7 +930,7 @@ static void character_ragdoll_iter( struct character *ch )
          shoe_vel[i] = v3_length( ch->ragdoll[i].v );
    
    /* This used to be 20 iterations */
-   for( int i=0; i<5; i++ )
+   for( int i=0; i<10; i++ )
    {
       float const k_springfactor = 1.0f/20.0f;