Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feat/elevator' into feat/elevator
Browse files Browse the repository at this point in the history
  • Loading branch information
miyac22 committed Sep 13, 2023
2 parents b0c3244 + 3bb189e commit c6b917a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/commands/IntakeModeCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
import frc.robot.subsystems.IntakeSubsystem;
import frc.robot.subsystems.IntakeSubsystem.IntakeMode;

public class IntakeCommand extends CommandBase {
public class IntakeModeCommand extends CommandBase {
private IntakeSubsystem intakeSubsystem;
private IntakeMode mode;

/** Creates a new IntakeCommand. */
public IntakeCommand(IntakeSubsystem intakeSubsystem, IntakeMode mode) {
public IntakeModeCommand(IntakeSubsystem intakeSubsystem, IntakeMode mode) {
// Use addRequirements() here to declare subsystem dependencies.
this.intakeSubsystem = intakeSubsystem;
this.mode = mode;
Expand Down

0 comments on commit c6b917a

Please sign in to comment.