diff options
Diffstat (limited to 'src/chunk-render.cpp')
-rw-r--r-- | src/chunk-render.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chunk-render.cpp b/src/chunk-render.cpp index 28a8d7bc..823e72ab 100644 --- a/src/chunk-render.cpp +++ b/src/chunk-render.cpp @@ -112,7 +112,7 @@ auto chunk::ensure_scenery_mesh() noexcept -> scenery_mesh_tuple const auto count = fm_begin( std::size_t ret = 0; for (const auto& e : _entities) - ret += e->atlas->info().fps == 0; + ret += !e->is_dynamic(); return ret; ); |