File tree 2 files changed +4
-4
lines changed
session/crane_planner_plugins/include/crane_planner_plugins
utility/crane_msg_wrappers/include/crane_msg_wrappers
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,12 @@ class OurKickOffPlanner : public PlannerBase
25
25
{
26
26
private:
27
27
std::shared_ptr<skills::KickoffAttack> kickoff_attack;
28
+
28
29
std::shared_ptr<RobotCommandWrapper> attacker_command;
29
30
30
31
std::shared_ptr<skills::KickoffSupport> kickoff_support;
31
- std::shared_ptr<RobotCommandWrapper> supporter_command;
32
32
33
- // std::shared_ptr<ConsaiVisualizerWrapper> visualizer ;
33
+ std::shared_ptr<RobotCommandWrapper> supporter_command ;
34
34
35
35
public:
36
36
COMPOSITION_PUBLIC explicit OurKickOffPlanner (
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ struct TeamInfo
98
98
{
99
99
std::vector<std::shared_ptr<RobotInfo>> available_robots;
100
100
for (auto robot : robots) {
101
- if (robot->available && robot_id != my_id) {
101
+ if (robot->available && robot-> id != my_id) {
102
102
available_robots.emplace_back (robot);
103
103
}
104
104
}
@@ -109,7 +109,7 @@ struct TeamInfo
109
109
{
110
110
std::vector<uint8_t > available_robot_ids;
111
111
for (auto robot : robots) {
112
- if (robot->available && robot_id != my_id) {
112
+ if (robot->available && robot-> id != my_id) {
113
113
available_robot_ids.emplace_back (robot->id );
114
114
}
115
115
}
You can’t perform that action at this time.
0 commit comments