From 4450057eb77ce900d0ff43e032d51ad7903936ae Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Fri, 18 Aug 2006 09:21:01 +0000 Subject: [PATCH] The server should still process network packages for keeping the package queue empty. --- code/unix/unix_net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/unix/unix_net.c b/code/unix/unix_net.c index d2146997..13dc3fb0 100644 --- a/code/unix/unix_net.c +++ b/code/unix/unix_net.c @@ -662,7 +662,7 @@ void NET_Sleep(int msec) FD_SET(0, &fdset); // stdin is processed too highestfd = 1; } - if(ip_socket && com_sv_running->integer) + if(ip_socket) { FD_SET(ip_socket, &fdset); // network socket if(ip_socket >= highestfd)