From 5ad7db9d6418712be9ad4a02bbe58defc723ce27 Mon Sep 17 00:00:00 2001 From: Sryder Date: Sat, 15 Jun 2019 15:50:04 +0100 Subject: [PATCH] Revert to needing to touch every checkpoint to complete a lap. --- src/p_spec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/p_spec.c b/src/p_spec.c index a0b2f8626..de7f37f0d 100644 --- a/src/p_spec.c +++ b/src/p_spec.c @@ -4225,12 +4225,12 @@ DoneSection2: case 10: // Finish Line // SRB2kart - 150117 - if (G_RaceGametype() && (player->starpostnum >= (numstarposts - (numstarposts/2)) || player->exiting)) + if (G_RaceGametype() && ((player->starpostnum == numstarposts) || player->exiting)) player->kartstuff[k_starpostwp] = player->kartstuff[k_waypoint] = 0; // if (G_RaceGametype() && !player->exiting) { - if (player->starpostnum >= (numstarposts - (numstarposts/2))) // srb2kart: must have touched *enough* starposts (was originally "(player->starpostnum == numstarposts)") + if (player->starpostnum == numstarposts) { UINT8 nump = 0;