diff --git a/soccer/src/soccer/strategy/agent/position/waller.cpp b/soccer/src/soccer/strategy/agent/position/waller.cpp index c841f7dc4d1..51c43311796 100644 --- a/soccer/src/soccer/strategy/agent/position/waller.cpp +++ b/soccer/src/soccer/strategy/agent/position/waller.cpp @@ -35,7 +35,7 @@ std::optional Waller::get_task(RobotIntent intent, const WorldState // Find target Point rj_geometry::Point mid_point{(goal_pos) + (ball_dir_vector * min_wall_rad)}; - auto wall_spacing = kRobotDiameterMultiplier * kRobotDiameter + kBallRadius; + auto wall_spacing = kRobotDiameterMultiplier * kRobotDiameter + kBallRadius * 2; rj_geometry::Point target_point{}; auto angle = (mid_point - goal_pos).angle();