diff --git a/src/Server/RobotControlServer/Routes/RoutePlan.cs b/src/Server/RobotControlServer/Routes/RoutePlan.cs index 4b19c87..e95897c 100644 --- a/src/Server/RobotControlServer/Routes/RoutePlan.cs +++ b/src/Server/RobotControlServer/Routes/RoutePlan.cs @@ -29,7 +29,7 @@ public class RoutePlan: IRoute { // Add obstacles cell by cell foreach (var obj in parsedBody?.objects) { - planner.AddObstacleCell(obj[0], obj[1]); + planner.AddObstacleCell(obj[0], obj[1]); // Get x and y for every coordinate in the parsedbody array } List PlanPath = planner.PlanPath();