Only reverse with wrong way on the ground

This commit is contained in:
NepDisk 2026-04-27 16:18:27 -04:00
parent 4669f11385
commit 865df4ed26

View file

@ -1300,8 +1300,11 @@ static INT32 K_HandleBotTrack(botdata_t *bd, const player_t *player, angle_t des
if (anglediff > ANGLE_67h)
{
// Wrong way!
bd->acceldown = false;
bd->brakedown = true;
if (onground)
{
bd->acceldown = false;
bd->brakedown = true;
}
}
else
{