o Fixed a bug in the "new" hitbox registration code where the bounding box in some cases would not be able to include entities that should be hit by a trace

git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@68 67975925-1194-0748-b3d5-c16f83f1a3a1
This commit is contained in:
tankefugl 2005-04-12 01:19:15 +00:00
parent 20bc86ffa6
commit 78a75cac4a
1 changed files with 1 additions and 1 deletions

View File

@ -1149,7 +1149,7 @@ void AvHGetLineBounds(const Vector& vecStart, const Vector& vecEnd, Vector& outM
outMaxs[0] += kBoundingBoxPadding;
outMaxs[1] += kBoundingBoxPadding;
outMins[2] += kBoundingBoxPadding;
outMaxs[2] += kBoundingBoxPadding; /// tankefugl: was outMins[2]
}