summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-09-30 21:51:27 +0300
committerAndrei Karas <akaras@inbox.ru>2013-09-30 21:51:27 +0300
commit251c9cccce6252238797bc4ac782175dd0aeb42e (patch)
tree8440ec8e72f463008342326638b7822775fc405d /src/game.cpp
parentf513868a135c1af288ff13ba2fcfdd6a5dc70a19 (diff)
downloadplus-251c9cccce6252238797bc4ac782175dd0aeb42e.tar.gz
plus-251c9cccce6252238797bc4ac782175dd0aeb42e.tar.bz2
plus-251c9cccce6252238797bc4ac782175dd0aeb42e.tar.xz
plus-251c9cccce6252238797bc4ac782175dd0aeb42e.zip
fix slow login update time.
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp2
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)