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_draw.c | |
parent | 7a9d256ea39e7ed8797801f8184e6ab7f27a21dc (diff) |
More bug fixes for Wraith.
Diffstat (limited to 'src/cgame/cg_draw.c')
-rw-r--r-- | src/cgame/cg_draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cgame/cg_draw.c b/src/cgame/cg_draw.c index 4782c00..6328f42 100644 --- a/src/cgame/cg_draw.c +++ b/src/cgame/cg_draw.c @@ -4043,7 +4043,7 @@ static void CG_DrawHealthBars( void ) cent = cg_entities + cg.snap->entities[ i ].number; es = ¢->currentState; - if( es->eFlags & ( EF_DEAD | EF_NODRAW ) ) + if( es->eFlags & ( EF_DEAD | EF_NODRAW | EF_WARPING ) ) continue; switch( es->eType ) |