summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-04-03 22:59:02 +0200
committerStanislaw Halik <sthalik@misaki.pl>2024-04-04 00:14:45 +0200
commite3743cc6717ca7a7a655d9c22e10fe1e8356174a (patch)
tree0f7283615145a99e748d9f2db3f6b2bd866350e7 /src
parentbe4412d38bfc4179ac4401391a06d5b7c7378bc7 (diff)
reduce stderrspam
Diffstat (limited to 'src')
-rw-r--r--src/world.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/world.cpp b/src/world.cpp
index 7a4fc079..6fdb38ff 100644
--- a/src/world.cpp
+++ b/src/world.cpp
@@ -146,7 +146,7 @@ void world::collect(bool force)
c = nullptr;
pos = chunk_tuple::invalid_coords;
const auto len = len0 - _chunks.size();
- if (len)
+ if (len > 1)
fm_debug("world: collected %zu/%zu chunks", len, len0);
}