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:
Spoike 2014-01-17 23:28:48 +00:00
parent b05e0a051c
commit a4f03df481
1 changed files with 1 additions and 1 deletions

View File

@ -493,7 +493,7 @@ void World_LinkEdict (world_t *w, wedict_t *ent, qboolean touch_triggers)
InsertLinkBefore (&ent->area, &node->edicts);
// 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);
}