diff --git a/crane_local_planner/src/rvo2_planner.cpp b/crane_local_planner/src/rvo2_planner.cpp index 94a5358e0..4ca602a0b 100644 --- a/crane_local_planner/src/rvo2_planner.cpp +++ b/crane_local_planner/src/rvo2_planner.cpp @@ -258,7 +258,11 @@ crane_msgs::msg::RobotCommands RVO2Planner::calculateRobotCommand( const crane_msgs::msg::RobotCommands & msg) { crane_msgs::msg::RobotCommands commands = msg; - overrideTargetPosition(commands); + if ( + world_model->play_situation.getRefereeCommandID() != + robocup_ssl_msgs::msg::Referee::COMMAND_HALT) { + overrideTargetPosition(commands); + } reflectWorldToRVOSim(commands); // RVOシミュレータ更新 rvo_sim->doStep();