Fixed negative

This commit is contained in:
Aarav Shah
2021-01-29 15:17:03 -07:00
parent 52d801f7ac
commit 1c5bdf6e2b
@@ -342,7 +342,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);
}