Loops: fix momentum cut on grounded exit

This commit is contained in:
James R 2023-10-13 21:17:43 -07:00 committed by NepDisk
parent 5ee0e0d8c6
commit 416ceafc96

View file

@ -4067,7 +4067,8 @@ void P_PlayerThink(player_t *player)
else if (player->loop.radius != 0)
{
P_PlayerOrbit(player);
player->rmomx = player->rmomy = 0;
player->rmomx = player->mo->momx;
player->rmomy = player->mo->momy;
}
else
{