diff options
-rw-r--r-- | src/game.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/game.cpp b/src/game.cpp index f67fac098..8fdb2b230 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -543,6 +543,8 @@ void Game::logic() actorSpriteManager->logic(); if (particleEngine) particleEngine->update(); + if (mCurrentMap) + mCurrentMap->update(); cur_time = static_cast<int>(time(nullptr)); } @@ -562,9 +564,6 @@ void Game::slowLogic() if (whoIsOnline) whoIsOnline->slowLogic(); - if (mCurrentMap) - mCurrentMap->update(); - Being::reReadConfig(); if (killStats) killStats->recalcStats(); |