increased the update rate to let the game be playable

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/hilnius@13284 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hilnius
2013-07-19 14:18:21 +00:00
parent c6ef045f2a
commit 68336bdcdc

View File

@@ -64,7 +64,7 @@ void KartUpdateProtocol::update()
{
static double time = 0;
double current_time = Time::getRealTime();
if (current_time > time + 1.0) // 1 updates per second
if (current_time > time + 0.1) // 10 updates per second
{
time = current_time;
if (m_listener->isServer())