summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-05-02 18:48:26 +0200
committerStanislaw Halik <sthalik@misaki.pl>2024-05-02 22:54:16 +0200
commit0af58edf619ca071210d2bab399ca780390c7100 (patch)
tree26c9ca2f2445ea24b0f2fea66d43f0b1a70b14e3
parentb93032e49cd69da178984f9912205d182f12f61e (diff)
c
-rw-r--r--src/world.cpp2
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())
{