- Blood: Don't attenuate view rolling when swimming.

* Blood's input and drag system is much more developed than the other games and further attenuation is not needed here.
This commit is contained in:
Mitchell Richters 2023-09-25 17:00:10 +10:00
parent 9ad0af4479
commit ce236c795f

View file

@ -6054,7 +6054,7 @@ static void actCheckDudes()
nDrag -= Scale(nDrag, (double)actor->xspr.height, 256.);
constexpr auto maxVel = (36211. / 3000.);
pPlayer->Angles.doRollInput(&pPlayer->input, actor->vel.XY(), maxVel, pPlayer->posture == kPostureSwim);
pPlayer->Angles.doRollInput(&pPlayer->input, actor->vel.XY(), maxVel, false);
pPlayer->Angles.StrafeVel -= pPlayer->Angles.StrafeVel * nDrag;
}