diff options
author | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-08-18 09:21:01 +0000 |
---|---|---|
committer | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-08-18 09:21:01 +0000 |
commit | 65326c8f5fc9e3780f68b7ec47c835cc09899c3c (patch) | |
tree | 1fe39f94ea655fe37b5226cbe18ee349d29a7876 | |
parent | 58c4b737379c71aafcc7db6a1fe1b695ee75d864 (diff) | |
download | ioquake3-aero-65326c8f5fc9e3780f68b7ec47c835cc09899c3c.tar.gz ioquake3-aero-65326c8f5fc9e3780f68b7ec47c835cc09899c3c.zip |
The server should still process network packages for keeping the package queue empty.
git-svn-id: svn://svn.icculus.org/quake3/trunk@852 edf5b092-35ff-0310-97b2-ce42778d08ea
-rw-r--r-- | code/unix/unix_net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/unix/unix_net.c b/code/unix/unix_net.c index d214699..13dc3fb 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) |