From 250906a1fca1af5c11112e6133c43a551d33b2f6 Mon Sep 17 00:00:00 2001 From: IronClawTrem Date: Tue, 10 Mar 2020 18:01:35 +0000 Subject: specNoclip scoreboard fix --- src/cgame/cg_main.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src') 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 ) { -- cgit