- SW: Restore lost SetAngleFromChange(actor) call from previous commit.

This commit is contained in:
Mitchell Richters 2023-01-07 22:49:22 +11:00
parent ae6af08cf1
commit 165afbbfa9

View file

@ -8327,6 +8327,7 @@ bool SlopeBounce(DSWActor* actor, bool* hit_wall)
// reflection code
double k = actor->user.change.dot(normal) / normal.LengthSquared();
actor->user.change -= k * normal;
SetAngleFromChange(actor);
return true;
}