Make parse data respect the newely implemented scimax cvar
This commit is contained in:
parent
a070a00df0
commit
0b1ca19ef7
2 changed files with 3 additions and 5 deletions
|
@ -74,6 +74,7 @@ shdata_parse.qc
|
|||
gamerules.qc
|
||||
gamerules_fear.qc
|
||||
gamerules_hunt.qc
|
||||
gamerules_invasion.qc
|
||||
gamerules_madness.qc
|
||||
gamerules_slaughter.qc
|
||||
gamerules_stealth.qc
|
||||
|
|
|
@ -17,15 +17,12 @@
|
|||
/* If only origin parameters are applied, make something up */
|
||||
var int autocvar_sh_sciyaw = TRUE;
|
||||
|
||||
/* Limit the amount of scientists spawned */
|
||||
var int autocvar_sh_scimax = 30;
|
||||
|
||||
void
|
||||
SHData_SpawnScientist(void)
|
||||
{
|
||||
static int slimit = 0;
|
||||
if (autocvar_sh_scimax) {
|
||||
if (slimit >= autocvar_sh_scimax) {
|
||||
if (cvar("sh_scimax")) {
|
||||
if (slimit >= cvar("sh_scimax")) {
|
||||
dprint("shdata: scientist limit hit. ignored\n");
|
||||
remove(self);
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue