diff options
Diffstat (limited to 'src/chunk.hpp')
-rw-r--r-- | src/chunk.hpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/chunk.hpp b/src/chunk.hpp index 5472130d..7967484c 100644 --- a/src/chunk.hpp +++ b/src/chunk.hpp @@ -42,7 +42,6 @@ private: std::array<std::shared_ptr<tile_atlas>, TILE_COUNT> _ground_atlases, _wall_north_atlases, _wall_west_atlases; std::array<std::shared_ptr<anim_atlas>, TILE_COUNT> _scenery; std::array<variant_t, TILE_COUNT> _ground_variants = {}, _wall_north_variants = {}, _wall_west_variants = {}; - std::array< std::bitset<TILE_COUNT*2> _passability = {}; mutable bool _maybe_empty = true; }; |