mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Guarantee 0 Match Race bots on Titlescreen (resolves #1216)
This commit is contained in:
parent
5971b4af04
commit
8c269b26b9
1 changed files with 5 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue