From a97ec7093619b8bba984d053b6a2e9036538c96b Mon Sep 17 00:00:00 2001 From: havoc Date: Mon, 16 Apr 2007 13:37:42 +0000 Subject: [PATCH] server no longer calls networking on each physics frame (since sv.datagram is no longer important) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7110 d7cf8633-e32d-0410-b094-e92efae38249 --- host.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/host.c b/host.c index 6d1788a9..455f55d5 100644 --- a/host.c +++ b/host.c @@ -731,14 +731,14 @@ void Host_Main(void) if (sv.frametime) SV_Physics(); - // send all messages to the clients - SV_SendClientMessages(); - // if this server frame took too long, break out of the loop if (framelimit > 1 && Sys_DoubleTime() >= aborttime) break; } + // send all messages to the clients + SV_SendClientMessages(); + // end the server VM frame SV_VM_End(); -- 2.39.2