From b5d87a89f4076258d7249c28bc92fb0db45d9236 Mon Sep 17 00:00:00 2001 From: James R Date: Fri, 12 Jan 2024 00:57:56 -0800 Subject: [PATCH] Battle: use Prison Break spawnpoints in Duels --- src/g_game.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/g_game.c b/src/g_game.c index ef9b54f3c..5ebbf062b 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -2802,9 +2802,9 @@ mapthing_t *G_FindMapStart(INT32 playernum) if (K_PodiumSequence() == true) spawnpoint = G_FindPodiumStart(playernum); - // -- Time Attack -- + // -- Time Attack / Battle duels -- // Order: Race->DM->CTF - else if (K_TimeAttackRules() == true) + else if (K_TimeAttackRules() == true || ((gametyperules & GTR_BATTLESTARTS) && inDuel)) spawnpoint = G_FindRaceStartOrFallback(playernum); // -- CTF --