Fix racing lap times (#683)

This commit is contained in:
David Markowitz
2022-07-27 20:54:42 -07:00
committed by GitHub
parent ffd4477081
commit adb6a2c609

View File

@@ -818,7 +818,7 @@ void RacingControlComponent::Update(float deltaTime) {
// Reached the start point, lapped
if (respawnIndex == 0) {
time_t lapTime = std::time(nullptr) - (player.lap == 1 ? m_StartTime : player.lapTime);
time_t lapTime = std::time(nullptr) - (player.lap == 0 ? m_StartTime : player.lapTime);
// Cheating check
if (lapTime < 40) {