diff --git a/src/main/java/frc/robot/RobotContainer.java b/src/main/java/frc/robot/RobotContainer.java index 015d36c..b08a8ee 100644 --- a/src/main/java/frc/robot/RobotContainer.java +++ b/src/main/java/frc/robot/RobotContainer.java @@ -43,8 +43,8 @@ public RobotContainer() { //HINT: In tank drive, the left wheel is controlled by the y axis of the left joystick and the y axis of the right joystick. m_xrpDrivetrain.setDefaultCommand( DriveCommands.tankDriveCommand( - () -> m_controller.getLeftY(), - () -> m_controller.getRightY() + () -> m_controller.getLeftY()*-1, + () -> m_controller.getRightY()*-1 ) ) }