From d11d9ca79794b4cad00e177f538dbe8c41e4747a Mon Sep 17 00:00:00 2001 From: Ashnal Date: Sun, 24 Aug 2025 09:08:36 -0400 Subject: [PATCH] Can't interact with checkpoints during lap 0 --- src/objects/checkpoint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/objects/checkpoint.cpp b/src/objects/checkpoint.cpp index 45b373fb0..17fa383b7 100644 --- a/src/objects/checkpoint.cpp +++ b/src/objects/checkpoint.cpp @@ -584,7 +584,7 @@ void Obj_CheckpointThink(mobj_t* end) void Obj_CrossCheckpoints(player_t* player, fixed_t old_x, fixed_t old_y) { - if (player->exiting) // can't cross checkpoints when exiting + if (player->exiting || player->laps == 0) // can't cross checkpoints when exiting, or before the first lap starts { return; }