From c85c020ba47a38ceb72af29b715140ff5f0c687d Mon Sep 17 00:00:00 2001 From: NepDisk Date: Sun, 12 Apr 2026 21:46:53 -0400 Subject: [PATCH] Fix bad copypaste Wow I need to sleep more lmao --- src/k_kart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_kart.c b/src/k_kart.c index fd0c24d5a..178b76f5d 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -8855,7 +8855,7 @@ void K_SetRespawnAtNextWaypoint(player_t *player) } // If the player's current and next waypoint is safe, carry on as usual - if (player->currentwaypoint && (K_SafeRespawnWaypoint(nextwp) || K_GetWaypointIsFinishline(nextwp))) + if (player->currentwaypoint && (K_SafeRespawnWaypoint(player->nextwaypoint) || K_GetWaypointIsFinishline(player->nextwaypoint))) { previouswp = player->currentwaypoint; nextwp = player->nextwaypoint;