mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 20:41:46 +00:00
Reset scores between Battle matches for now
I want to tackle the two intermission screens whenever I do the same for Race
This commit is contained in:
parent
b661be498b
commit
4e69131997
1 changed files with 7 additions and 2 deletions
|
|
@ -3390,8 +3390,13 @@ static void G_DoWorldDone(void)
|
||||||
{
|
{
|
||||||
if (server)
|
if (server)
|
||||||
{
|
{
|
||||||
// SRB2kart: don't reset player between maps
|
// SRB2Kart
|
||||||
D_MapChange(nextmap+1, deferredgametype, ultimatemode, (deferredgametype != gametype), 0, false, false);
|
if (G_RaceGametype() && (deferredgametype == gametype))
|
||||||
|
// don't reset player between maps in Race
|
||||||
|
D_MapChange(nextmap+1, deferredgametype, ultimatemode, false, 0, false, false);
|
||||||
|
else
|
||||||
|
// resetplayer in Battle for more equality
|
||||||
|
D_MapChange(nextmap+1, deferredgametype, ultimatemode, true, 0, false, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
gameaction = ga_nothing;
|
gameaction = ga_nothing;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue