From 9b3cd876af961fe5d7ba30d63da0420277ba1e67 Mon Sep 17 00:00:00 2001 From: havoc Date: Mon, 23 Jan 2006 21:34:22 +0000 Subject: [PATCH] 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 --- world.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.2