diff options
Diffstat (limited to 'src/cgame/cg_main.c')
-rw-r--r-- | src/cgame/cg_main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cgame/cg_main.c b/src/cgame/cg_main.c index 1312cc23..bda93826 100644 --- a/src/cgame/cg_main.c +++ b/src/cgame/cg_main.c @@ -1446,7 +1446,8 @@ static const char *CG_FeederItemText( float feederID, int index, int column, qha switch( column ) { case 0: - if( atoi( CG_ConfigString( CS_CLIENTS_READY ) ) & ( 1 << sp->client ) ) + if( ( atoi( CG_ConfigString( CS_CLIENTS_READY ) ) & ( 1 << sp->client ) ) && + cg.intermissionStarted ) return "Ready"; break; |