From fdbe835131059579b429cbcc3cd4d06c3bed512e Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Mon, 19 Aug 2013 22:23:25 +0200 Subject: Fixed WorldTickThread reporting wrong time durations for each tick. This had caused food eating to fail and players unable to collect pickups on Linux. --- source/Server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/Server.cpp') diff --git a/source/Server.cpp b/source/Server.cpp index 9c1e06c81..dd18f8d3d 100644 --- a/source/Server.cpp +++ b/source/Server.cpp @@ -75,7 +75,7 @@ void cServer::cTickThread::Execute(void) { cTimer Timer; - long long msPerTick = 50; // TODO - Put this in server config file + long long msPerTick = 50; long long LastTime = Timer.GetNowTime(); while (!m_ShouldTerminate) -- cgit v1.2.3