Increase target cone for Race

This commit is contained in:
Sally Cochenour 2019-01-30 15:41:15 -05:00
parent 3cb468aec8
commit f3644505be

View file

@ -3932,7 +3932,7 @@ player_t *K_FindJawzTarget(mobj_t *actor, player_t *source)
if (thisang > ANGLE_180) if (thisang > ANGLE_180)
thisang = InvAngle(thisang); 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; continue;
// Jawz only go after the person directly ahead of you in race... sort of literally now! // Jawz only go after the person directly ahead of you in race... sort of literally now!