diff options
author | Andrey Nazarov <skuller@skuller.net> | 2008-10-01 17:09:41 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2008-10-01 17:09:41 +0000 |
commit | 952fd39fbe89a265bc56585a9be50ee29e3db44c (patch) | |
tree | 7784d528522d9c36ae89dfb3b7a58f9cb24d5daa /source/mvd_game.c | |
parent | 3544752417431e55fab8226318e985d1b97cfb32 (diff) |
Stop recording when destroying MVD channel, not when disconnecting.
Save oldscores when entering intermission mode only.
When MVD buffer fails for the first time, wait for 5 seconds, then
increase the delay up to `mvd_wait_delay' value.
Display spectator/player counts in the output of `mvdchannels' and
in the HTML status page.
No longer draw POV name client side, removed `scr_showfollowing' cvar.
Diffstat (limited to 'source/mvd_game.c')
-rw-r--r-- | source/mvd_game.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source/mvd_game.c b/source/mvd_game.c index 0cadfd1..55351f0 100644 --- a/source/mvd_game.c +++ b/source/mvd_game.c @@ -1024,9 +1024,10 @@ static void MVD_Commands_f( udpClient_t *client ) { "observe toggle observer mode\n" "menu show main menu\n" "score show scoreboard\n" + "oldscore show previous scoreboard\n" "channels [all] list active (or all) channels\n" "join [channel_id] join specified channel\n" - "leave leave into the Waiting Room\n" + "leave go to the Waiting Room\n" ); } @@ -1109,7 +1110,7 @@ static void MVD_GameClientCommand( edict_t *ent ) { MVD_Channels_f( client ); return; } - if( !strcmp( cmd, "clients" ) ) { + if( !strcmp( cmd, "clients" ) || !strcmp( cmd, "players" ) ) { MVD_Clients_f( client ); return; } |