Skip to content

Commit

Permalink
initialize and end alignmentDrive
Browse files Browse the repository at this point in the history
  • Loading branch information
GearBoxFox committed Mar 12, 2024
1 parent e820639 commit 862d713
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/main/java/frc/robot/commands/AlignmentDriveCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ public void initialize() {
0.0,
driveSubsystem
);

alignmentCommand.initialize();
}

@Override
Expand Down Expand Up @@ -113,4 +115,9 @@ public void execute() {
public boolean isFinished() {
return alignmentCommand.isFinished();
}

@Override
public void end(boolean interrupted) {
alignmentCommand.end(interrupted);
}
}

0 comments on commit 862d713

Please sign in to comment.