- RR: fixed movement direction when throwing a bowling ball.

This commit is contained in:
Christoph Oelckers 2022-11-09 15:21:08 +01:00
parent 5ebf2fef89
commit 3c7810a229

View file

@ -3137,7 +3137,7 @@ static void operateweapon(int snum, ESyncBits actions, sectortype* psectp)
}
if (p->kickback_pic < 30)
{
p->vel.XY() -= p->angle.ang.ToVector();
p->vel.XY() += p->angle.ang.ToVector();
}
p->kickback_pic++;
if (p->kickback_pic > 40)