Merge pull request #1602 from carla-simulator/local_planner_debug_flag

Adding the flag correctly
This commit is contained in:
germanros1987 2019-05-02 14:14:24 -07:00 committed by GitHub
commit c3231d01f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -119,6 +119,6 @@ class BasicAgent(Agent):
else:
self._state = AgentState.NAVIGATING
# standard local planner behavior
control = self._local_planner.run_step()
control = self._local_planner.run_step(debug=debug)
return control