Guarantee 0 Match Race bots on Titlescreen (resolves #1216)

This commit is contained in:
toaster 2024-03-27 19:57:04 +00:00
parent 5971b4af04
commit 8c269b26b9

View file

@ -241,7 +241,11 @@ void K_UpdateMatchRaceBots(void)
}
grabskins[usableskins] = MAXSKINS;
if ((gametyperules & GTR_BOTS) == 0 && !cv_forcebots.value)
if (gamestate == GS_TITLESCREEN)
{
difficulty = 0;
}
else if ((gametyperules & GTR_BOTS) == 0 && !cv_forcebots.value)
{
difficulty = 0;
}