mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-12 19:12:31 +00:00
Revert to needing to touch every checkpoint to complete a lap.
This commit is contained in:
parent
d8f81ab4b9
commit
5ad7db9d64
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue