diff options
author | IronClawTrem <louie.nutman@gmail.com> | 2020-03-13 19:27:13 +0000 |
---|---|---|
committer | IronClawTrem <louie.nutman@gmail.com> | 2020-03-13 19:27:13 +0000 |
commit | ba86994b7e67a4251214904b1f949062764191a6 (patch) | |
tree | 01884f4dcc4d427f4db2f59d0bde207cc6048b01 /src | |
parent | 250906a1fca1af5c11112e6133c43a551d33b2f6 (diff) |
fix "Ready" showing over scoreboard icons
Diffstat (limited to 'src')
-rw-r--r-- | src/cgame/cg_main.c | 4 |
1 files changed, 4 insertions, 0 deletions
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 ) |