Add some maphack that're specific to coop.

These are some corner cases that can only happen when one or both
players die at the wrong place and time. This is based upon a fix by
Maraakate. This fixes issue #9.
This commit is contained in:
Yamagi Burmeister 2017-03-13 15:06:49 +01:00
parent 76a2d97569
commit 12480710e6
1 changed files with 31 additions and 2 deletions

View File

@ -283,6 +283,35 @@ spawn_t spawns[] = {
{NULL, NULL} {NULL, NULL}
}; };
qboolean Spawn_CheckCoop_MapHacks (edict_t *ent)
{
if(!coop->value || !ent)
{
return false;
}
if(!Q_stricmp(level.mapname, "xsewer1"))
{
if(ent->classname && !Q_stricmp(ent->classname, "trigger_relay") && ent->target && !Q_stricmp(ent->target, "t3") && ent->targetname && !Q_stricmp(ent->targetname, "t2"))
{
return true;
}
if(ent->classname && !Q_stricmp(ent->classname, "func_button") && ent->target && !Q_stricmp(ent->target, "t16") && ent->model && !Q_stricmp(ent->model, "*71"))
{
ent->message = "Overflow valve maintenance\nhatch A opened.";
return false;
}
if(ent->classname && !Q_stricmp(ent->classname, "trigger_once") && ent->model && !Q_stricmp(ent->model, "*3"))
{
ent->message = "Overflow valve maintenance\nhatch B opened.";
return false;
}
}
return false;
}
/* /*
* Finds the spawn function for * Finds the spawn function for
* the entity and calls it * the entity and calls it
@ -688,14 +717,14 @@ SpawnEntities(const char *mapname, char *entities, const char *spawnpoint)
} }
else else
{ {
if ( if (Spawn_CheckCoop_MapHacks(ent) || (
((skill->value == 0) && ((skill->value == 0) &&
(ent->spawnflags & SPAWNFLAG_NOT_EASY)) || (ent->spawnflags & SPAWNFLAG_NOT_EASY)) ||
((skill->value == 1) && ((skill->value == 1) &&
(ent->spawnflags & SPAWNFLAG_NOT_MEDIUM)) || (ent->spawnflags & SPAWNFLAG_NOT_MEDIUM)) ||
(((skill->value == 2) || (((skill->value == 2) ||
(skill->value == 3)) && (skill->value == 3)) &&
(ent->spawnflags & SPAWNFLAG_NOT_HARD)) (ent->spawnflags & SPAWNFLAG_NOT_HARD)))
) )
{ {
G_FreeEdict(ent); G_FreeEdict(ent);