Merge branch 'main' into editorconfig

This commit is contained in:
Aaron Kimbre 2022-07-28 09:27:06 -05:00
commit 1b01abd7d9

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) {