diff --git a/ateam_kenobi/src/core/play_selector.cpp b/ateam_kenobi/src/core/play_selector.cpp index 3ea8b5bf3..e314ee5a0 100644 --- a/ateam_kenobi/src/core/play_selector.cpp +++ b/ateam_kenobi/src/core/play_selector.cpp @@ -44,6 +44,10 @@ PlaySelector::PlaySelector(rclcpp::Node & node) node.get_node_parameters_interface()); halt_play_ = addPlay(stp_options); addPlay(stp_options); + addPlay("TheirLeftLineup", stp_options, 1.0, 1.0); + addPlay("TheirRightLineup", stp_options, 1.0, -1.0); + addPlay("OurLeftLineup", stp_options, -1.0, 1.0); + addPlay("OurRightLineup", stp_options, -1.0, -1.0); addPlay(stp_options); addPlay(stp_options); addPlay(stp_options); @@ -89,6 +93,8 @@ PlaySelector::PlaySelector(rclcpp::Node & node) addPlay(stp_options); addPlay(stp_options); addPlay(stp_options); + addPlay(stp_options); + addPlay(stp_options); } stp::Play * PlaySelector::getPlay(const World & world, ateam_msgs::msg::PlaybookState & state_msg)