Changed Double Negative

Lol
This commit is contained in:
Aarav Shah
2021-01-29 14:58:10 -07:00
parent 08f404d001
commit 73a6bd975d
2 changed files with 2 additions and 2 deletions
@@ -94,7 +94,7 @@ public class DriveWithJoystick extends CommandBase {
}
*/
m_drive.driveWithInput(-moveOutput, steerOutput);
m_drive.driveWithInput(moveOutput, steerOutput);
}
// Called once the command ends or is interrupted.
@@ -349,7 +349,7 @@ public class Drive extends SubsystemBase {
* using the Differential Drive class to manage the two inputs
*/
public void driveWithInput(double move, double steer) {
m_driveTrain.arcadeDrive(-move, steer);
m_driveTrain.arcadeDrive(move, steer);
m_leftBackMotor.follow(m_leftFrontMotor);
m_rightBackMotor.follow(m_rightFrontMotor);
}