mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Loops: fix momentum cut on grounded exit
This commit is contained in:
parent
107809d876
commit
2c1cce17b2
1 changed files with 2 additions and 1 deletions
|
|
@ -4265,7 +4265,8 @@ void P_PlayerThink(player_t *player)
|
||||||
else if (player->loop.radius != 0)
|
else if (player->loop.radius != 0)
|
||||||
{
|
{
|
||||||
P_PlayerOrbit(player);
|
P_PlayerOrbit(player);
|
||||||
player->rmomx = player->rmomy = 0;
|
player->rmomx = player->mo->momx;
|
||||||
|
player->rmomy = player->mo->momy;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue