diff options
| -rw-r--r-- | src/game/g_weapon.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_weapon.c b/src/game/g_weapon.c index d71de3dd..5ef638a5 100644 --- a/src/game/g_weapon.c +++ b/src/game/g_weapon.c @@ -934,7 +934,7 @@ qboolean CheckVenomAttack( gentity_t *ent )    if( traceEnt->health <= 0 )        return qfalse; -  if( !traceEnt->client && !traceEnt->s.eType == ET_BUILDABLE ) +  if( !traceEnt->client && !( traceEnt->s.eType == ET_BUILDABLE ) )      return qfalse;    // only allow bites to work against buildings as they are constructing  | 
