summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIronClawTrem <louie.nutman@gmail.com>2020-03-10 18:01:35 +0000
committerIronClawTrem <louie.nutman@gmail.com>2020-03-10 18:01:35 +0000
commit250906a1fca1af5c11112e6133c43a551d33b2f6 (patch)
tree86054970fd5675d5ffa21e54952bd85badb96907
parent07cb505e8189041d26e40e3d4eeabb9957028bd1 (diff)
specNoclip scoreboard fix
-rw-r--r--src/cgame/cg_main.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/cgame/cg_main.c b/src/cgame/cg_main.c
index a5496cd..95b35d0 100644
--- a/src/cgame/cg_main.c
+++ b/src/cgame/cg_main.c
@@ -1705,12 +1705,7 @@ static const char *CG_FeederItemText( float feederID, int index, int column, qha
info = CG_InfoFromScoreIndex( index, team, &scoreIndex );
sp = &cg.scores[ scoreIndex ];
- if( ( atoi( CG_ConfigString( CS_CLIENTS_READY ) ) & ( 1 << sp->client ) ) &&
- cg.intermissionStarted )
- showIcons = qfalse;
- else if( cg.snap->ps.pm_type == PM_SPECTATOR || cg.snap->ps.pm_flags & PMF_FOLLOW ||
- team == cg.snap->ps.stats[ STAT_PTEAM ] || cg.intermissionStarted )
- showIcons = qtrue;
+ showIcons = qtrue;
if( info && info->infoValid )
{