]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
fix a typo, and apparently this isn't the cause of the nexuiz CTF bug
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 23 Jan 2006 21:34:22 +0000 (21:34 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 23 Jan 2006 21:34:22 +0000 (21:34 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5923 d7cf8633-e32d-0410-b094-e92efae38249

world.c

diff --git a/world.c b/world.c
index 64b493a88c2c6eb9d8eaca76b5353cdcdaced9e8..846ece819758f266df36dd10c220f6ae4ff49e25 100644 (file)
--- 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);
 }