Use P1-4 starts in Capsules Attack / Bonus Stage

Rather than randomized Battle starts.
This commit is contained in:
Sally Coolatta 2022-12-03 04:45:59 -05:00
parent 226cb7d736
commit 2140c2f616

View file

@ -2824,6 +2824,11 @@ mapthing_t *G_FindMapStart(INT32 playernum)
spawnpoint = G_FindRaceStartOrFallback(playernum);
}
// -- Grand Prix / Time Attack --
// Order: Race->DM->CTF
else if (grandprixinfo.gp || modeattacking)
spawnpoint = G_FindRaceStartOrFallback(playernum);
// -- CTF --
// Order: CTF->DM->Race
else if ((gametyperules & GTR_TEAMSTARTS) && players[playernum].ctfteam)