mirror of
https://github.com/nzp-team/glquake.git
synced 2024-11-10 14:41:37 +00:00
Let engine dictate max AI
This commit is contained in:
parent
c0e5bb7578
commit
9709f2071a
1 changed files with 15 additions and 1 deletions
|
@ -3229,6 +3229,20 @@ void PF_GrenadePulse(void)
|
||||||
MSG_WriteByte (&client->message,svc_pulse);
|
MSG_WriteByte (&client->message,svc_pulse);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
=================
|
||||||
|
PF_MaxZombies
|
||||||
|
|
||||||
|
Returns the total number of zombies
|
||||||
|
the platform can have out at once.
|
||||||
|
|
||||||
|
nzp_maxai()
|
||||||
|
=================
|
||||||
|
*/
|
||||||
|
void PF_MaxZombies(void)
|
||||||
|
{
|
||||||
|
G_FLOAT(OFS_RETURN) = 12;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
=================
|
=================
|
||||||
|
@ -3828,7 +3842,7 @@ PF_Fixme,
|
||||||
PF_SongEgg, // #500
|
PF_SongEgg, // #500
|
||||||
PF_MaxAmmo, // #501
|
PF_MaxAmmo, // #501
|
||||||
PF_GrenadePulse, // #502
|
PF_GrenadePulse, // #502
|
||||||
PF_Fixme,
|
PF_MaxZombies, // #503
|
||||||
PF_Fixme,
|
PF_Fixme,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue