From a0c392f48e4c6ade6ca704e99a28b30cbc3a904c Mon Sep 17 00:00:00 2001 From: Lumi Virtual <65882669+Lumi-Virtual@users.noreply.github.com> Date: Tue, 16 Apr 2024 23:10:38 -0700 Subject: [PATCH] if this fixes it i think i know where the problem is --- src/map.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map.cpp b/src/map.cpp index 945008d0b25dc..090b8640817b1 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -7780,7 +7780,7 @@ std::vector map::get_dir_circle( const tripoint &f, const tripoint &t circle.resize( 8 ); // The line below can be crazy expensive - we only take the FIRST point of it - const std::vector line = line_to_2( f, t ); + const std::vector line = line_to( f, t ); const std::vector spiral = closest_points_first( f, 1 ); const std::vector pos_index {1, 2, 4, 6, 8, 7, 5, 3};