everything done except mapping buttons to actions
[3501/3501-spark-go] / src / org / usfirst / frc / team3501 / robot / commands / DriveWithJoysticks.java
index 500bad953e33000ad9c29fa9a890c64d29ed0f86..cda6cdd7f35cd96a9d6d3592a0f63c33d7634aac 100644 (file)
@@ -8,7 +8,7 @@ public class DriveWithJoysticks extends CommandBase {
     }
 
     protected void execute() {
-        drivetrain.drive(oi.getForward(), oi.getTwist());
+        drivetrain.drive(oi.getForwardR(), oi.getTwistR());
     }
 
     protected boolean isFinished() {