Revert "Send player position 10 times a second instead of 5. Uses more bandwidth but looks much better."

This reverts commit d37d6daba9.
This commit is contained in:
Calinou 2012-11-27 17:01:23 +01:00
parent 2a61499101
commit dbc9feade1
1 changed files with 1 additions and 1 deletions

View File

@ -658,7 +658,7 @@ void Client::step(float dtime)
{
float &counter = m_playerpos_send_timer;
counter += dtime;
if(counter >= 0.1)
if(counter >= 0.2)
{
counter = 0.0;
sendPlayerPos();