diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-09-30 21:51:27 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-09-30 21:51:27 +0300 |
commit | 251c9cccce6252238797bc4ac782175dd0aeb42e (patch) | |
tree | 8440ec8e72f463008342326638b7822775fc405d | |
parent | f513868a135c1af288ff13ba2fcfdd6a5dc70a19 (diff) | |
download | plus-251c9cccce6252238797bc4ac782175dd0aeb42e.tar.gz plus-251c9cccce6252238797bc4ac782175dd0aeb42e.tar.bz2 plus-251c9cccce6252238797bc4ac782175dd0aeb42e.tar.xz plus-251c9cccce6252238797bc4ac782175dd0aeb42e.zip |
fix slow login update time.
-rw-r--r-- | src/game.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp index f0b42223c..c3d0aa36f 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -585,7 +585,7 @@ void Game::slowLogic() if (player_node) player_node->slowLogic(); const int time = cur_time; - if (mTime <= time) + if (mTime != time) { mTime = time + 1; if (botCheckerWindow) |