From 89a4a0895b5eacb20cc4d9dceeddb2be12ab99ca Mon Sep 17 00:00:00 2001 From: Lauren Meier Date: Tue, 9 Feb 2016 19:14:25 -0800 Subject: [PATCH] fix method name to match command --- .../frc/team3501/robot/commands/ToggleBallRollerExpel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/usfirst/frc/team3501/robot/commands/ToggleBallRollerExpel.java b/src/org/usfirst/frc/team3501/robot/commands/ToggleBallRollerExpel.java index 66ee1d6d..b6d6ffe7 100644 --- a/src/org/usfirst/frc/team3501/robot/commands/ToggleBallRollerExpel.java +++ b/src/org/usfirst/frc/team3501/robot/commands/ToggleBallRollerExpel.java @@ -14,7 +14,7 @@ public class ToggleBallRollerExpel extends Command { if (Robot.intakeArm.areRollersRolling()) Robot.intakeArm.stopRollers(); else - Robot.intakeArm.intakeBall(); + Robot.intakeArm.outputBall(); } @Override -- 2.30.2