mirror of
https://git.code.sf.net/p/quake/game-source
synced 2025-04-06 07:50:49 +00:00
make intended precedence explicit
This commit is contained in:
parent
3493b80dd0
commit
698f7e322d
2 changed files with 5 additions and 5 deletions
|
@ -1725,10 +1725,10 @@ void(entity targ, entity attacker) ClientObituary =
|
|||
bprint("'s flag carrier\n");
|
||||
}
|
||||
}
|
||||
if (((attacker.team == TEAM_COLOR1) &&
|
||||
(head.classname == "item_flag_team1")) ||
|
||||
((attacker.team == TEAM_COLOR2) &&
|
||||
(head.classname == "item_flag_team2"))
|
||||
if ((((attacker.team == TEAM_COLOR1)
|
||||
&& (head.classname == "item_flag_team1"))
|
||||
|| ((attacker.team == TEAM_COLOR2)
|
||||
&& (head.classname == "item_flag_team2")))
|
||||
&& (!flag_radius)) { // prevents redundant points awarded
|
||||
// target was near attacker's flag
|
||||
attacker.frags = attacker.frags +
|
||||
|
|
|
@ -630,7 +630,7 @@ void() trigger_push =
|
|||
|
||||
void() trigger_monsterjump_touch =
|
||||
{
|
||||
if ( other.flags & (FL_MONSTER | FL_FLY | FL_SWIM) != FL_MONSTER )
|
||||
if ((other.flags & (FL_MONSTER | FL_FLY | FL_SWIM)) != FL_MONSTER )
|
||||
return;
|
||||
|
||||
// set XY even if not on ground, so the jump will clear lips
|
||||
|
|
Loading…
Reference in a new issue