diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-05-02 18:48:26 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-05-02 22:54:16 +0200 |
commit | 0af58edf619ca071210d2bab399ca780390c7100 (patch) | |
tree | 26c9ca2f2445ea24b0f2fea66d43f0b1a70b14e3 | |
parent | b93032e49cd69da178984f9912205d182f12f61e (diff) |
c
-rw-r--r-- | src/world.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/world.cpp b/src/world.cpp index 975181c0..bdc74218 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -284,7 +284,7 @@ shared_ptr_wrapper<critter> world::ensure_player_character(object_id& id_, critt shared_ptr_wrapper<critter> ret; - for (const auto& [coord, c] : chunks()) // todo use world::_objects + for (auto& [coord, c] : chunks()) { for (const auto& eʹ : c.objects()) { |