From fc700ec82c652dfee499ce261458879a8c31d5d2 Mon Sep 17 00:00:00 2001 From: Shaina Chen Date: Thu, 11 Feb 2016 19:27:47 -0800 Subject: [PATCH] change isFinished to return true instead of false --- .../team3501/robot/commands/RaiseDefenseWristContinuous.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/usfirst/frc/team3501/robot/commands/RaiseDefenseWristContinuous.java b/src/org/usfirst/frc/team3501/robot/commands/RaiseDefenseWristContinuous.java index c8cc2875..1f9984c6 100755 --- a/src/org/usfirst/frc/team3501/robot/commands/RaiseDefenseWristContinuous.java +++ b/src/org/usfirst/frc/team3501/robot/commands/RaiseDefenseWristContinuous.java @@ -24,7 +24,7 @@ public class RaiseDefenseWristContinuous extends Command { @Override protected boolean isFinished() { - return false; + return true; } @Override -- 2.30.2