don't touch non-gp methods that are in the gp class (lol)
This commit is contained in:
parent
6d0a7552b2
commit
2a09d16282
1 changed files with 3 additions and 3 deletions
|
|
@ -589,7 +589,7 @@ void K_RetireBots(void)
|
|||
newDifficulty = 1;
|
||||
}
|
||||
|
||||
for (i = 0; i < MAXGPPLAYERS; i++)
|
||||
for (i = 0; i < MAXPLAYERS; i++)
|
||||
{
|
||||
player_t *bot = NULL;
|
||||
|
||||
|
|
@ -608,7 +608,7 @@ void K_RetireBots(void)
|
|||
}
|
||||
}
|
||||
|
||||
for (i = 0; i < MAXGPPLAYERS; i++)
|
||||
for (i = 0; i < MAXPLAYERS; i++)
|
||||
{
|
||||
player_t *bot = NULL;
|
||||
|
||||
|
|
@ -660,7 +660,7 @@ void K_FakeBotResults(player_t *bot)
|
|||
UINT8 numplayers = 0;
|
||||
UINT8 i;
|
||||
|
||||
for (i = 0; i < MAXGPPLAYERS; i++)
|
||||
for (i = 0; i < MAXPLAYERS; i++)
|
||||
{
|
||||
if (playeringame[i] && !players[i].spectator)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue