CMorphBall: Fix inverted check in ApplySpiderBallRollForces

This commit is contained in:
Luke Street 2022-02-11 11:05:53 -05:00
parent f510f1904c
commit a413a010b5
1 changed files with 1 additions and 1 deletions

View File

@ -653,7 +653,7 @@ void CMorphBall::ApplySpiderBallRollForces(const CFinalInput& input, CStateManag
x18b4_linVelDamp = 0.4f;
x18b8_angVelDamp = 0.2f;
float viewControlMag = viewSurfaceForces.dot(x189c_spiderInterpBetweenPoints.normalized());
if (continueTrackForce && x1920_spiderForcesReset) {
if (continueTrackForce && !x1920_spiderForcesReset) {
viewControlMag = x1918_spiderViewControlMag;
} else {
x1918_spiderViewControlMag = viewControlMag;