mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-25 05:41:42 +00:00
Fix homing ring using the wrong team gametype rule
This commit is contained in:
parent
b103a792c0
commit
51c593e633
1 changed files with 1 additions and 1 deletions
|
@ -4986,7 +4986,7 @@ void A_ThrownRing(mobj_t *actor)
|
|||
continue;
|
||||
|
||||
// Don't home in on teammates.
|
||||
if ((gametyperules & GTR_TEAMFLAGS)
|
||||
if ((gametyperules & GTR_TEAMS)
|
||||
&& actor->target->player->ctfteam == player->ctfteam)
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue