From 2140c2f6162d42aa75be8ed8f764d7a68f4ec998 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Sat, 3 Dec 2022 04:45:59 -0500 Subject: [PATCH] Use P1-4 starts in Capsules Attack / Bonus Stage Rather than randomized Battle starts. --- src/g_game.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/g_game.c b/src/g_game.c index fe73d8ae6..5cde2d270 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -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)