Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Commit

Permalink
Simplify Path Generation
Browse files Browse the repository at this point in the history
  • Loading branch information
3LucasZ committed Oct 3, 2023
1 parent 6138007 commit 4c731f4
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ public static Command createDynamicAbsolutePath(

// create command that runs trajectory
AutoBuilder autoBuilder = new AutoBuilder(swerveDrive);
Command trajCommand = autoBuilder.createTrajectoryFollowCommand(trajectory, false, false);
return trajCommand;
return autoBuilder.createTrajectoryFollowCommand(trajectory, false, false);
}

public static Command createDynamicRelativePath(
Expand Down

0 comments on commit 4c731f4

Please sign in to comment.