Turns out this deceleration here was needed.

This commit is contained in:
Mari the Deer 2022-08-11 10:52:54 +02:00
commit 62c9427c2d
2 changed files with 3 additions and 2 deletions

View file

@ -2018,6 +2018,7 @@ Class Demolitionist : PlayerPawn
double spd = vel.length();
if ( spd > 40. ) vel = (vel+accel/GameTicRate).unit()*spd;
else vel = vel+accel/GameTicRate;
vel *= .95;
player.vel = (1,1)*vel.length();
player.jumptics = -2;
if ( !(player.cheats & CF_PREDICTING) && (player.cmd.forwardmove|player.cmd.sidemove) )