We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16f45da commit bd44035Copy full SHA for bd44035
plugin.cpp
@@ -118,7 +118,8 @@ bool update_forces ( telemetry_state_t const & telemetry )
118
}
119
else
120
{
121
- if( telemetry.speed < 45 ) { autocenter_slope = 2 ; damper_force = 2 ; }
+ if( telemetry.speed < 5 ) { autocenter_slope = 2 ; damper_force = 2 ; }
122
+ else if( telemetry.speed < 45 ) { autocenter_slope = 2 ; damper_force = 1 ; }
123
else if( telemetry.speed < 75 ) { autocenter_slope = 3 ; damper_force = 1 ; }
124
else { autocenter_slope = 4 ; damper_force = 0 ; }
125
0 commit comments