diff options
author | Andrey Nazarov <skuller@skuller.net> | 2007-12-30 13:46:18 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2007-12-30 13:46:18 +0000 |
commit | 53ffec24bf90ca1316ede90390926fd98db21fd1 (patch) | |
tree | c7ef898556105726acab72e9ed19dfd35fc36227 /source/cl_parse.c | |
parent | 2974cadbd2e10924a71a632d73c17309dafc8093 (diff) |
Made `condump' command write into `condumps/*.txt' by default.
Fixed anticheat being disabled after server restart via `map' command.
Diffstat (limited to 'source/cl_parse.c')
-rw-r--r-- | source/cl_parse.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/cl_parse.c b/source/cl_parse.c index 98639b5..b7d9742 100644 --- a/source/cl_parse.c +++ b/source/cl_parse.c @@ -1171,6 +1171,10 @@ static void CL_ParseStartSoundPacket( void ) { pos = NULL; } + if( cl_shownet->integer > 2 ) { + Com_Printf( " %s\n", cl.configstrings[CS_SOUNDS+sound_num] ); + } + if( cl.sound_precache[sound_num] ) { S_StartSound( pos, ent, channel, cl.sound_precache[sound_num], volume, attenuation, ofs ); |