Merge branch 'offline-drift-exit' into 'master'

Disallow drift exit help on D0

Closes #1512

See merge request kart-krew-dev/ring-racers-internal!2543
This commit is contained in:
Oni VelocitOni 2025-05-24 19:11:59 +00:00
commit c3a0439f7e

View file

@ -2345,7 +2345,7 @@ static void P_UpdatePlayerAngle(player_t *player)
// This is the hardest case for the turn solver, because your handling properties on
// client side are very different than your handling properties on server side—at least,
// until your drift status makes the full round-trip and is reflected in your gamestate.
if (player->drift && abs(player->drift) < 5)
if (player->drift && abs(player->drift) < 5 && player->cmd.latency)
{
steeringRight = KART_FULLTURN;
steeringLeft = -KART_FULLTURN;