From: havoc Date: Wed, 29 Mar 2006 09:14:28 +0000 (+0000) Subject: in Host_ServerFrame, give the server a bit more execution time X-Git-Tag: xonotic-v0.1.0preview~4124 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=5adf854e739c9d2a0803a39caf92f0937497fd00;p=xonotic%2Fdarkplaces.git in Host_ServerFrame, give the server a bit more execution time git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6204 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/host.c b/host.c index c3efe96f..7e281db3 100644 --- a/host.c +++ b/host.c @@ -652,7 +652,7 @@ void Host_ServerFrame (void) // setup the VM frame SV_VM_Begin(); // stop running server frames if the wall time reaches this value - aborttime = Sys_DoubleTime() + 0.05; + aborttime = Sys_DoubleTime() + 0.1; for (framecount = 0;framecount < framelimit && sv.timer > 0;framecount++) { if (sys_ticrate.value <= 0)