mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-31 05:00:35 +00:00
bah, my findradius fix got stomped on :P
This commit is contained in:
parent
76d7fc2b6d
commit
8651fabfbc
1 changed files with 1 additions and 1 deletions
|
@ -664,7 +664,7 @@ PF_findradius (progs_t *pr)
|
|||
emins = SVvector (ent, mins);
|
||||
emaxs = SVvector (ent, maxs);
|
||||
for (j = 0; j < 3; j++)
|
||||
eorg[j] = org[j] - eorigin[j] - 0.5 * (emins[j] - emaxs[j]);
|
||||
eorg[j] = org[j] - eorigin[j] - 0.5 * (emins[j] + emaxs[j]);
|
||||
if (DotProduct (eorg, eorg) > rad)
|
||||
continue;
|
||||
|
||||
|
|
Loading…
Reference in a new issue