Prevent monster entities from spawning outside coop 1 or maxplayers 1.
This commit is contained in:
parent
bdfb040bc2
commit
bbad094cae
1 changed files with 6 additions and 0 deletions
|
@ -418,5 +418,11 @@ CBaseMonster::Respawn(void)
|
||||||
void
|
void
|
||||||
CBaseMonster::CBaseMonster(void)
|
CBaseMonster::CBaseMonster(void)
|
||||||
{
|
{
|
||||||
|
/* FIXME: Put this somewhere else? */
|
||||||
|
if (!(cvar("coop") == 1 || cvar("sv_playerslots") == 1)) {
|
||||||
|
remove(this);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
CBaseEntity::CBaseEntity();
|
CBaseEntity::CBaseEntity();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue