From ba86994b7e67a4251214904b1f949062764191a6 Mon Sep 17 00:00:00 2001 From: IronClawTrem Date: Fri, 13 Mar 2020 19:27:13 +0000 Subject: fix "Ready" showing over scoreboard icons --- src/cgame/cg_main.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/cgame/cg_main.c b/src/cgame/cg_main.c index 95b35d0..c2e55b8 100644 --- a/src/cgame/cg_main.c +++ b/src/cgame/cg_main.c @@ -1707,6 +1707,10 @@ static const char *CG_FeederItemText( float feederID, int index, int column, qha showIcons = qtrue; + if( ( atoi( CG_ConfigString( CS_CLIENTS_READY ) ) & ( 1 << sp->client ) ) && + cg.intermissionStarted ) + showIcons = qfalse; + if( info && info->infoValid ) { switch( column ) -- cgit