diff options
Diffstat (limited to 'source/cl_main.c')
-rw-r--r-- | source/cl_main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/cl_main.c b/source/cl_main.c index 3a2da20..65408d8 100644 --- a/source/cl_main.c +++ b/source/cl_main.c @@ -2505,6 +2505,9 @@ static void CL_CheckForReply( void ) { #endif static void CL_CheckTimeout( void ) { + if( NET_IsLocalAddress( &cls.netchan->remote_address ) ) { + return; + } if( cls.netchan->last_received > com_localTime ) { cls.netchan->last_received = com_localTime; } |