Revert to needing to touch every checkpoint to complete a lap.

This commit is contained in:
Sryder 2019-06-15 15:50:04 +01:00
parent d8f81ab4b9
commit 5ad7db9d64

View file

@ -4225,12 +4225,12 @@ DoneSection2:
case 10: // Finish Line case 10: // Finish Line
// SRB2kart - 150117 // 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; player->kartstuff[k_starpostwp] = player->kartstuff[k_waypoint] = 0;
// //
if (G_RaceGametype() && !player->exiting) 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; UINT8 nump = 0;