diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2015-06-26 03:19:59 +0200 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2015-06-26 03:23:19 +0200 |
commit | 1895729b01532be9589d3606c331cc8f9ca9a9e3 (patch) | |
tree | 243b3526ea535df824d38fd1a3a4b841e1f63c4a /src/cgame/cg_scanner.c | |
parent | 7a9d256ea39e7ed8797801f8184e6ab7f27a21dc (diff) |
More bug fixes for Wraith.
Diffstat (limited to 'src/cgame/cg_scanner.c')
-rw-r--r-- | src/cgame/cg_scanner.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cgame/cg_scanner.c b/src/cgame/cg_scanner.c index 5e134cd..3699551 100644 --- a/src/cgame/cg_scanner.c +++ b/src/cgame/cg_scanner.c @@ -58,7 +58,7 @@ void CG_UpdateEntityPositions( void ) { cent = &cg_entities[ cg.snap->entities[ i ].number ]; - if( cent->currentState.eFlags & EF_NODRAW ) + if( cent->currentState.eFlags & EF_WARPING ) { continue; } |