From: havoc Date: Wed, 21 May 2003 09:05:15 +0000 (+0000) Subject: added a note about an id bug with triggers and ignoring .owner (the fact they don't) X-Git-Tag: xonotic-v0.1.0preview~6639 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=3e259a1be67a618c83d16972843e4c3407e25dc4;p=xonotic%2Fdarkplaces.git added a note about an id bug with triggers and ignoring .owner (the fact they don't) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3006 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/world.c b/world.c index b1215762..85a53826 100644 --- a/world.c +++ b/world.c @@ -260,6 +260,7 @@ void SV_TouchAreaGrid(edict_t *ent) || ent->v->absmin[2] > touch->v->absmax[2] || ent->v->absmax[2] < touch->v->absmin[2]) continue; + // LordHavoc: id bug that won't be fixed: triggers do not ignore their owner like solid objects do if (touch == ent) continue; if (!touch->v->touch || touch->v->solid != SOLID_TRIGGER)