From bbe866986974ef486986290cf381ffee5f38bfa6 Mon Sep 17 00:00:00 2001 From: Richard Allen Date: Tue, 26 Feb 2002 20:55:00 +0000 Subject: [PATCH] No more bubbles over dead players corpses --- reaction/cgame/cg_players.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/reaction/cgame/cg_players.c b/reaction/cgame/cg_players.c index f4bf0025..88936d59 100644 --- a/reaction/cgame/cg_players.c +++ b/reaction/cgame/cg_players.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.17 2002/02/26 20:55:00 jbravo +// No more bubbles over dead players corpses +// // Revision 1.16 2002/01/30 07:37:25 niceass // EnableBreath added for mappers (TA thing) // @@ -2148,7 +2151,8 @@ static void CG_PlayerSprites( centity_t *cent ) { return; } - if ( cent->currentState.eFlags & EF_TALK ) { +// JBravo: stopping talk bubbles appearing over dead peoples heads + if ((cent->currentState.eFlags & EF_TALK) && !(cent->currentState.eFlags & EF_DEAD)) { CG_PlayerFloatSprite( cent, cgs.media.balloonShader ); return; }