]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
added a note about an id bug with triggers and ignoring .owner (the fact they don't)
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 21 May 2003 09:05:15 +0000 (09:05 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 21 May 2003 09:05:15 +0000 (09:05 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3006 d7cf8633-e32d-0410-b094-e92efae38249

world.c

diff --git a/world.c b/world.c
index b121576248dd107c86a8fe6cefc77e385dde2852..85a53826222b91bb7c7d8de5ec696f6f2f817149 100644 (file)
--- 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)