From fdff8f8c393afac807c5372da7f9365d8080f4cf Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 13 Nov 2022 07:59:55 +0100 Subject: a --- src/chunk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/chunk.cpp b/src/chunk.cpp index 353446f3..71378439 100644 --- a/src/chunk.cpp +++ b/src/chunk.cpp @@ -14,7 +14,7 @@ bool chunk::empty(bool force) const noexcept for (std::size_t i = 0; i < TILE_COUNT; i++) { - if (_ground_atlases[i] || _wall_atlases[i*2 + 0] || _wall_atlases[i*2 + 1]) + if (_ground_atlases[i] || _wall_atlases[i*2 + 0] || _wall_atlases[i*2 + 1] || _scenery_atlases[i]) { _maybe_empty = false; return false; -- cgit v1.2.3