mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-13 07:47:45 +00:00
try to fix the recently created fodffa unable-to-respawn bug.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4594 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
b05e0a051c
commit
a4f03df481
1 changed files with 1 additions and 1 deletions
|
@ -493,7 +493,7 @@ void World_LinkEdict (world_t *w, wedict_t *ent, qboolean touch_triggers)
|
||||||
InsertLinkBefore (&ent->area, &node->edicts);
|
InsertLinkBefore (&ent->area, &node->edicts);
|
||||||
|
|
||||||
// if touch_triggers, touch all entities at this node and decend for more
|
// if touch_triggers, touch all entities at this node and decend for more
|
||||||
if (touch_triggers)
|
if (touch_triggers && ent->v->solid != SOLID_NOT)
|
||||||
World_TouchLinks (w, ent, w->areanodes);
|
World_TouchLinks (w, ent, w->areanodes);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue