diff --git a/action_server/src/action_server/actions/guide.py b/action_server/src/action_server/actions/guide.py index 02beb450..17c4ccfb 100644 --- a/action_server/src/action_server/actions/guide.py +++ b/action_server/src/action_server/actions/guide.py @@ -112,6 +112,8 @@ def _cancel(self): from robot_skills.amigo import Amigo as Robot elif robot_name == 'sergio': from robot_skills.sergio import Sergio as Robot + elif robot_name == 'hero': + from robot_skills.hero import Hero as Robot else: from robot_skills.mockbot import Mockbot as Robot @@ -120,7 +122,8 @@ def _cancel(self): action = Guide() config = ConfigurationData({'action': 'guide', - 'object': {'id': 'cabinet'}}) + 'object': {'id': 'cabinet'}, + 'target-location': {'id':'dinner_table'}}) action.configure(robot, config) action.start()