From 458d3402d673944de06153ea493e7987e58056bd Mon Sep 17 00:00:00 2001 From: EvanYap Date: Sat, 4 Feb 2017 15:38:40 -0800 Subject: [PATCH] use driveTrain var instead of DriveTrain static --- src/org/usfirst/frc/team3501/robot/Robot.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/usfirst/frc/team3501/robot/Robot.java b/src/org/usfirst/frc/team3501/robot/Robot.java index 7c104f0..ca60af7 100644 --- a/src/org/usfirst/frc/team3501/robot/Robot.java +++ b/src/org/usfirst/frc/team3501/robot/Robot.java @@ -16,7 +16,7 @@ public class Robot extends IterativeRobot { @Override public void robotInit() { - driveTrain = DriveTrain.getDriveTrain(); + driveTrain = driveTrain; oi = OI.getOI(); shooter = Shooter.getShooter(); intake = Intake.getIntake(); -- 2.30.2