From 8feb843c115202fe9de081644981dad6faf3fd96 Mon Sep 17 00:00:00 2001 From: minenice55 Date: Tue, 10 Feb 2026 18:45:14 -0500 Subject: [PATCH] remove the nuke --- src/p_setup.c | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/p_setup.c b/src/p_setup.c index 8f8abda03..c55604b9d 100644 --- a/src/p_setup.c +++ b/src/p_setup.c @@ -8533,9 +8533,6 @@ static void P_InitPlayers(void) players[i].mo = NULL; - if (players[i].bot && itembreaker) - continue; - if (!(gametyperules & GTR_CIRCUIT)) { G_DoReborn(i); @@ -9220,6 +9217,11 @@ void P_PostLoadLevel(void) TracyCZone(__zone, true); P_MapStart(); // g_tm.thing can be used starting from this point + if (G_GametypeHasSpectators()) + { + K_CheckSpectateStatus(false); + } + if (demo.playback) ; else if (grandprixinfo.gp == true) @@ -9241,11 +9243,6 @@ void P_PostLoadLevel(void) K_UpdateMatchRaceBots(); } - if (G_GametypeHasSpectators()) - { - K_CheckSpectateStatus(false); - } - K_TimerInit(); P_InitPlayers();