Skip to content

Commit

Permalink
Merge conflict fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
scotus-1 committed Jan 27, 2025
1 parent 450808d commit b3bdae5
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
import frc.robot.commands.ElevatorCommands.ResetElevatorEncoderCommand;
import frc.robot.constants.Constants;
import frc.robot.constants.ElevatorConstants;
import frc.robot.commands.ResetEncoderCommand;
import frc.robot.constants.Constants;
import frc.robot.constants.DriveConstants;
import frc.robot.generated.TunerConstants;
Expand Down Expand Up @@ -224,9 +223,9 @@ public double getAsDouble() {
operatorInput.movementDesired.whileTrue(
new BaseDriveCommand(
drive,
() -> -controller.getLeftY(),
() -> -controller.getLeftX(),
() -> -controller.getRightX()));
() -> -driveController.getLeftY(),
() -> -driveController.getLeftX(),
() -> -driveController.getRightX()));
} // TODO FIX COMMAND THIS WILL BREAK DO NOT RUN IT

/**
Expand Down

0 comments on commit b3bdae5

Please sign in to comment.