diff --git a/src/items/rubber_ball.cpp b/src/items/rubber_ball.cpp index ab9ac0428..e7434b654 100644 --- a/src/items/rubber_ball.cpp +++ b/src/items/rubber_ball.cpp @@ -644,7 +644,7 @@ void RubberBall::updateDistanceToTarget() float target_distance = world->getDistanceDownTrackForKart(m_target->getWorldKartId(), true); - float ball_distance = getDistanceFromStart(true); + float ball_distance = getDistanceFromStart(/* account for checklines */ false); m_distance_to_target = target_distance - ball_distance; if(m_distance_to_target < 0)