diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-26 17:37:12 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-26 18:04:43 +0100 |
commit | 0111a2f91caffc2d2b7d57c2d919c4d70f42db7f (patch) | |
tree | 4a477fbfe40cf8403588d3bfd11de97939e342e3 /editor/tests | |
parent | 06c5846c94a82cffd950cce7e9dfc753e1fc7242 (diff) |
display timing info in region generator
Diffstat (limited to 'editor/tests')
-rw-r--r-- | editor/tests/region-test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/tests/region-test.cpp b/editor/tests/region-test.cpp index 47272593..9b027636 100644 --- a/editor/tests/region-test.cpp +++ b/editor/tests/region-test.cpp @@ -153,7 +153,7 @@ void region_test::do_region_extraction(world& w, chunk_coords_ coord) if (auto* c = w.at(coord)) { result = { - .is_passable = c->make_pass_region().bits, + .is_passable = c->make_pass_region(true).bits, .c = coord, .exists = true, }; |