From: havoc Date: Mon, 23 Jan 2006 21:34:22 +0000 (+0000) Subject: fix a typo, and apparently this isn't the cause of the nexuiz CTF bug X-Git-Tag: xonotic-v0.1.0preview~4373 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9b3cd876af961fe5d7ba30d63da0420277ba1e67;p=xonotic%2Fdarkplaces.git fix a typo, and apparently this isn't the cause of the nexuiz CTF bug git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5923 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/world.c b/world.c index 64b493a8..846ece81 100644 --- a/world.c +++ b/world.c @@ -389,7 +389,7 @@ void SV_LinkEdict (prvm_edict_t *ent, qboolean touch_triggers) SV_LinkEdict_AreaGrid(ent); // if touch_triggers, touch all entities at this node and descend for more - if (touch_triggers && ent->fields.server.solid != SOLID_NOT) + if (touch_triggers && ent->fields.server->solid != SOLID_NOT) SV_TouchAreaGrid(ent); }