Skip to content

Commit 51abce8

Browse files
fixed bug with incorrect call to draw_point()
1 parent 8aef6af commit 51abce8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

srunner/tools/route_visualisation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ def visualise_route(route: list[carla.Location], lifetime=600):
2929

3030
# draw final waypoint
3131
world_debug.draw_point(
32-
location=route[-1], size=0.1, color=waypoint, life_time=lifetime
32+
location=route[-1].location, size=0.1, color=waypoint, life_time=lifetime
3333
)

0 commit comments

Comments
 (0)