diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/chunk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |