From ce236c795fc09f2b4326af62f49c811f2b2052e3 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Mon, 25 Sep 2023 17:00:10 +1000 Subject: [PATCH] - 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. --- source/games/blood/src/actor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/games/blood/src/actor.cpp b/source/games/blood/src/actor.cpp index 830376b12..f70aa412d 100644 --- a/source/games/blood/src/actor.cpp +++ b/source/games/blood/src/actor.cpp @@ -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; }