Fixed the negative

This commit is contained in:
Aarav Shah
2021-01-29 15:43:38 -07:00
parent 73a6bd975d
commit 5d75b044cc
@@ -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);
}