From a18525a14eca664dc93be01e55b0efd1ce08b0fa Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Mon, 29 Nov 2010 14:03:40 +0200 Subject: fixed face updating slowness bug --- src/server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/server.cpp') diff --git a/src/server.cpp b/src/server.cpp index e17e21d32..16f6611ca 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -380,7 +380,7 @@ void RemoteClient::GetNextBlocks(Server *server, float dtime, Also, don't send blocks that are already flying. */ - if(d >= BLOCK_SEND_DISABLE_LIMITS_MAX_D) + if(d > BLOCK_SEND_DISABLE_LIMITS_MAX_D) { JMutexAutoLock lock(m_blocks_sending_mutex); -- cgit v1.2.3