From 8d5bc92565146baee1f77f8ff7a9b6d229e05613 Mon Sep 17 00:00:00 2001 From: Mikko Tiusanen Date: Thu, 15 May 2014 22:13:54 +0300 Subject: Mines no longer trigger on anything <= adv. basilisk. --- src/cgame/cg_scanner.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/cgame/cg_scanner.c') diff --git a/src/cgame/cg_scanner.c b/src/cgame/cg_scanner.c index f4c86de..ad3d47d 100644 --- a/src/cgame/cg_scanner.c +++ b/src/cgame/cg_scanner.c @@ -57,9 +57,9 @@ void CG_UpdateEntityPositions( void ) for( i = 0; i < cg.snap->numEntities; i++ ) { cent = &cg_entities[ cg.snap->entities[ i ].number ]; - //make adv basilisk invisble to human helmet if invisble + //make adv basilisk invisble to human helmet if invisble if( cent->currentState.eType == ET_BUILDABLE && - !( cent->currentState.eFlags & EF_DEAD )) + !( cent->currentState.eFlags & EF_DEAD )) { // add to list of item positions (for creep) if( cent->currentState.modelindex2 == TEAM_ALIENS ) @@ -84,7 +84,7 @@ void CG_UpdateEntityPositions( void ) else if( cent->currentState.eType == ET_PLAYER ) { int team = cent->currentState.misc & 0x00FF; - //make adv basilisk invisble to radar if invisble + //make adv basilisk invisble to radar if invisble if( team == TEAM_ALIENS && !(cent->invisible ) ) { VectorCopy( cent->lerpOrigin, entityPositions.alienClientPos[ -- cgit