diff options
author | Andrey Nazarov <skuller@skuller.net> | 2007-12-02 18:59:08 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2007-12-02 18:59:08 +0000 |
commit | 9221a23a675ab39b90964787a5fdb60ba3a63881 (patch) | |
tree | b4fd466e1a5df6cb2a8237c7a4083217b25f762b /source/cl_parse.c | |
parent | 54124502cfb00c497ed24cbc8a9afefff1ba1b3a (diff) |
Made sure replies to !version are rate limited.
Diffstat (limited to 'source/cl_parse.c')
-rw-r--r-- | source/cl_parse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/cl_parse.c b/source/cl_parse.c index fdba906..33f4b62 100644 --- a/source/cl_parse.c +++ b/source/cl_parse.c @@ -1230,6 +1230,7 @@ static void CL_CheckForVersion( const char *string ) { } cl.replyTime = cls.realtime + 1024 + ( rand() & 1023 ); + cl.replyPending = qtrue; } #endif |