mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Don't reset score when retrying
This commit is contained in:
parent
e51bceb567
commit
5c8275f905
1 changed files with 2 additions and 6 deletions
|
|
@ -2366,7 +2366,7 @@ void G_Ticker(boolean run)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
D_MapChange(gamemap, gametype, (cv_kartencore.value == 1), true, 1, false, false);
|
D_MapChange(gamemap, gametype, (cv_kartencore.value == 1), false, 1, false, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < MAXPLAYERS; i++)
|
for (i = 0; i < MAXPLAYERS; i++)
|
||||||
|
|
@ -4633,12 +4633,8 @@ void G_InitNew(UINT8 pencoremode, const char *mapname, boolean resetplayer, bool
|
||||||
|
|
||||||
if (resetplayer && !(multiplayer && demo.playback)) // SRB2Kart
|
if (resetplayer && !(multiplayer && demo.playback)) // SRB2Kart
|
||||||
{
|
{
|
||||||
|
players[i].lives = 3;
|
||||||
players[i].score = 0;
|
players[i].score = 0;
|
||||||
|
|
||||||
if (grandprixinfo.roundnum == 0 || grandprixinfo.initalize == true)
|
|
||||||
{
|
|
||||||
players[i].lives = 3;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue