summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/game-server/main-game.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game-server/main-game.cpp b/src/game-server/main-game.cpp
index 11c36509..a35c9531 100644
--- a/src/game-server/main-game.cpp
+++ b/src/game-server/main-game.cpp
@@ -350,9 +350,9 @@ int main(int argc, char *argv[])
{
if (elapsedWorldTicks > WORLD_TICK_SKIP)
{
- LOG_WARN("Skipped "<< elapsedWorldTicks - WORLD_TICK_SKIP
+ LOG_WARN("Skipped "<< elapsedWorldTicks - 1
<< " world tick due to insufficient CPU time.");
- elapsedWorldTicks = WORLD_TICK_SKIP;
+ elapsedWorldTicks = 1;
}
worldTime++;
elapsedWorldTicks--;