From: Shaina Chen Date: Fri, 12 Feb 2016 03:27:47 +0000 (-0800) Subject: change isFinished to return true instead of false X-Git-Url: http://challenge-bot.com/repos/?p=3501%2Fstronghold-2016;a=commitdiff_plain;h=fc700ec82c652dfee499ce261458879a8c31d5d2 change isFinished to return true instead of false --- 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