summaryrefslogtreecommitdiff
path: root/src/game/g_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/g_main.c')
-rw-r--r--src/game/g_main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/game/g_main.c b/src/game/g_main.c
index d340e3c7..12c39e80 100644
--- a/src/game/g_main.c
+++ b/src/game/g_main.c
@@ -1300,13 +1300,14 @@ void CheckIntermissionExit( void ) {
// copy the readyMask to each player's stats so
// it can be displayed on the scoreboard
- for (i=0 ; i< g_maxclients.integer ; i++) {
+/* for (i=0 ; i< g_maxclients.integer ; i++) {
cl = level.clients + i;
if ( cl->pers.connected != CON_CONNECTED ) {
continue;
}
cl->ps.stats[STAT_CLIENTS_READY] = readyMask;
- }
+ }*/
+ trap_SetConfigstring( CS_CLIENTS_READY, va( "%d", readyMask ) );
// never exit in less than five seconds
if ( level.time < level.intermissiontime + 5000 ) {