mirror of
https://github.com/nzp-team/quakec.git
synced 2025-04-05 17:33:16 +00:00
CLIENT: Cap number of attempts on chase cam distance checks
This commit is contained in:
parent
b5ecd5dafd
commit
6357ee3226
1 changed files with 4 additions and 1 deletions
|
@ -73,6 +73,7 @@ void() Chase_Update =
|
|||
// take contents of the view leaf
|
||||
viewcontents = pointcontents(cl_vieworigin);
|
||||
|
||||
float attempts = 0;
|
||||
for (best = 0; best < NUM_TESTS; best++) {
|
||||
vector chase_newdest;
|
||||
|
||||
|
@ -85,8 +86,9 @@ void() Chase_Update =
|
|||
{
|
||||
// go back to the previous best as this one is bad
|
||||
// unless the first one was also bad, (viewleaf contents != viewleaf contents!!!)
|
||||
if (best > 0) {
|
||||
if (best > 0 && attempts < 5) {
|
||||
best--;
|
||||
attempts++;
|
||||
} else {
|
||||
best = NUM_TESTS;
|
||||
break;
|
||||
|
@ -139,6 +141,7 @@ void() Chase_Update =
|
|||
if (nummatches == 6) break;
|
||||
}
|
||||
|
||||
|
||||
// find the spot the player is looking at
|
||||
dest[0] = cl_vieworigin[0] + 4096 * v_forward[0];
|
||||
dest[1] = cl_vieworigin[1] + 4096 * v_forward[1];
|
||||
|
|
Loading…
Reference in a new issue