Fix flipped G_SameTeam in K_FindJawzTarget

This commit is contained in:
Sally Coolatta 2024-10-04 19:20:07 -04:00
parent 68eb4311f0
commit 9cce0811d8

View file

@ -8309,7 +8309,7 @@ mobj_t *K_FindJawzTarget(mobj_t *actor, player_t *source, angle_t range)
continue; continue;
} }
if (G_SameTeam(source, player) == false) if (G_SameTeam(source, player) == true)
{ {
// Don't home in on teammates. // Don't home in on teammates.
continue; continue;