game: fix typo in logical expression (ValveSoftware/source-sdk-2013#502)
This commit is contained in:
parent
bc5ff62f7a
commit
abb6994bc8
1 changed files with 1 additions and 1 deletions
|
@ -1257,7 +1257,7 @@ int CAI_AssaultBehavior::TranslateSchedule( int scheduleType )
|
|||
break;
|
||||
|
||||
case SCHED_HOLD_RALLY_POINT:
|
||||
if( HasCondition(COND_NO_PRIMARY_AMMO) | HasCondition(COND_LOW_PRIMARY_AMMO) )
|
||||
if( HasCondition(COND_NO_PRIMARY_AMMO) || HasCondition(COND_LOW_PRIMARY_AMMO) )
|
||||
{
|
||||
return SCHED_RELOAD;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue