diff options
Diffstat (limited to 'src/world.hpp')
-rw-r--r-- | src/world.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/world.hpp b/src/world.hpp index 20d9bd1d..8880fec0 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -56,7 +56,7 @@ public: struct pair final { chunk& c; tile_ref t; }; // NOLINT chunk& operator[](chunk_coords_ c) noexcept; - pair operator[](global_coords pt) noexcept; + pair operator[](global_coords pt) noexcept; // todo maybe remove this overload? chunk* at(chunk_coords_ c) noexcept; bool contains(chunk_coords_ c) const noexcept; void clear(); |