mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-04-01 07:51:21 +00:00
Add a quirk for the broken intermission in fact1
This commit is contained in:
parent
88183aa5f9
commit
7eee82d981
1 changed files with 10 additions and 0 deletions
|
@ -178,6 +178,16 @@ BeginIntermission(edict_t *targ)
|
|||
VectorCopy(ent->s.origin, level.intermission_origin);
|
||||
VectorCopy(ent->s.angles, level.intermission_angle);
|
||||
|
||||
/* In fact1 the intermission collides
|
||||
with an area portal, resulting in
|
||||
clutterings */
|
||||
if (!Q_stricmp(level.mapname, "fact1"))
|
||||
{
|
||||
level.intermission_origin[0] = 1037.0;
|
||||
level.intermission_origin[1] = 1100.0;
|
||||
level.intermission_origin[2] = 222.0;
|
||||
}
|
||||
|
||||
/* move all clients to the intermission point */
|
||||
for (i = 0; i < maxclients->value; i++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue