mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 12:21:19 +00:00
Increase target cone for Race
This commit is contained in:
parent
3cb468aec8
commit
f3644505be
1 changed files with 1 additions and 1 deletions
|
@ -3932,7 +3932,7 @@ player_t *K_FindJawzTarget(mobj_t *actor, player_t *source)
|
|||
if (thisang > ANGLE_180)
|
||||
thisang = InvAngle(thisang);
|
||||
|
||||
if (thisang > ANGLE_45) // Don't go for people who are behind you
|
||||
if (thisang > (G_RaceGametype() ? ANGLE_67h : ANGLE_45)) // Don't go for people who are behind you
|
||||
continue;
|
||||
|
||||
// Jawz only go after the person directly ahead of you in race... sort of literally now!
|
||||
|
|
Loading…
Reference in a new issue